bayinx 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bayinx-0.3.0 → bayinx-0.3.1}/PKG-INFO +1 -1
- {bayinx-0.3.0 → bayinx-0.3.1}/pyproject.toml +2 -2
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/core/model.py +10 -9
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/core/parameter.py +6 -6
- {bayinx-0.3.0 → bayinx-0.3.1}/tests/test_variational.py +6 -1
- {bayinx-0.3.0 → bayinx-0.3.1}/.github/workflows/release_and_publish.yml +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/.gitignore +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/README.md +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/constraints/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/constraints/lower.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/core/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/core/constraint.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/core/flow.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/core/variational.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/dists/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/dists/bernoulli.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/dists/censored/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/dists/censored/gamma2/r.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/dists/gamma2.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/dists/normal.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/dists/uniform.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/flows/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/flows/fullaffine.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/flows/planar.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/flows/radial.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/flows/sylvester.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/meanfield.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/normalizing_flow.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/mhx/vi/standard.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/src/bayinx/py.typed +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/tests/__init__.py +0 -0
- {bayinx-0.3.0 → bayinx-0.3.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "bayinx"
|
3
|
-
version = "0.3.
|
3
|
+
version = "0.3.1"
|
4
4
|
description = "Bayesian Inference with JAX"
|
5
5
|
readme = "README.md"
|
6
6
|
requires-python = ">=3.12"
|
@@ -19,7 +19,7 @@ build-backend = "hatchling.build"
|
|
19
19
|
addopts = "-q --benchmark-min-rounds=30 --benchmark-columns=rounds,mean,median,stddev --benchmark-group-by=func"
|
20
20
|
|
21
21
|
[tool.bumpversion]
|
22
|
-
current_version = "0.3.
|
22
|
+
current_version = "0.3.1"
|
23
23
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
24
24
|
serialize = ["{major}.{minor}.{patch}"]
|
25
25
|
search = "{current_version}"
|
@@ -1,25 +1,25 @@
|
|
1
1
|
from abc import abstractmethod
|
2
|
-
from typing import Any, Dict, Tuple
|
2
|
+
from typing import Any, Dict, Generic, Tuple, TypeVar
|
3
3
|
|
4
4
|
import equinox as eqx
|
5
5
|
import jax.numpy as jnp
|
6
6
|
import jax.tree as jt
|
7
|
-
from jaxtyping import
|
7
|
+
from jaxtyping import PyTree, Scalar
|
8
8
|
|
9
9
|
from bayinx.core.constraint import Constraint
|
10
10
|
from bayinx.core.parameter import Parameter
|
11
11
|
|
12
|
-
|
13
|
-
class Model(eqx.Module):
|
12
|
+
T = TypeVar('T', bound=PyTree)
|
13
|
+
class Model(eqx.Module, Generic[T]):
|
14
14
|
"""
|
15
15
|
An abstract base class used to define probabilistic models.
|
16
16
|
|
17
17
|
# Attributes
|
18
|
-
- `params`: A dictionary of
|
18
|
+
- `params`: A dictionary of parameters.
|
19
19
|
- `constraints`: A dictionary of constraints.
|
20
20
|
"""
|
21
21
|
|
22
|
-
params: Dict[str, Parameter]
|
22
|
+
params: Dict[str, Parameter[T]]
|
23
23
|
constraints: Dict[str, Constraint]
|
24
24
|
|
25
25
|
@abstractmethod
|
@@ -47,14 +47,14 @@ class Model(eqx.Module):
|
|
47
47
|
|
48
48
|
# Add constrain method
|
49
49
|
@eqx.filter_jit
|
50
|
-
def constrain_params(self) -> Tuple[Dict[str, Parameter], Scalar]:
|
50
|
+
def constrain_params(self) -> Tuple[Dict[str, Parameter[T]], Scalar]:
|
51
51
|
"""
|
52
52
|
Constrain `params` to the appropriate domain.
|
53
53
|
|
54
54
|
# Returns
|
55
55
|
A dictionary of PyTrees representing the constrained parameters and the adjustment to the posterior density.
|
56
56
|
"""
|
57
|
-
t_params: Dict[str,
|
57
|
+
t_params: Dict[str, Parameter[T]] = self.params
|
58
58
|
target: Scalar = jnp.array(0.0)
|
59
59
|
|
60
60
|
for par, map in self.constraints.items():
|
@@ -67,7 +67,8 @@ class Model(eqx.Module):
|
|
67
67
|
return t_params, target
|
68
68
|
|
69
69
|
# Add default transform method
|
70
|
-
|
70
|
+
@eqx.filter_jit
|
71
|
+
def transform_params(self) -> Tuple[Dict[str, Parameter[T]], Scalar]:
|
71
72
|
"""
|
72
73
|
Apply a custom transformation to `params` if needed.
|
73
74
|
|
@@ -1,11 +1,11 @@
|
|
1
|
-
from typing import Self
|
1
|
+
from typing import Generic, Self, TypeVar
|
2
2
|
|
3
3
|
import equinox as eqx
|
4
4
|
import jax.tree as jt
|
5
|
-
from jaxtyping import
|
5
|
+
from jaxtyping import PyTree
|
6
6
|
|
7
|
-
|
8
|
-
class Parameter(eqx.Module):
|
7
|
+
T = TypeVar('T', bound=PyTree)
|
8
|
+
class Parameter(eqx.Module, Generic[T]):
|
9
9
|
"""
|
10
10
|
A container for a parameter of a `Model`.
|
11
11
|
|
@@ -14,10 +14,10 @@ class Parameter(eqx.Module):
|
|
14
14
|
# Attributes
|
15
15
|
- `vals`: The parameter's value(s).
|
16
16
|
"""
|
17
|
-
vals:
|
17
|
+
vals: T
|
18
18
|
|
19
19
|
|
20
|
-
def __init__(self, values:
|
20
|
+
def __init__(self, values: T):
|
21
21
|
# Insert parameter values
|
22
22
|
self.vals = values
|
23
23
|
|
@@ -1,7 +1,10 @@
|
|
1
1
|
|
2
|
+
from typing import Dict
|
3
|
+
|
2
4
|
import equinox as eqx
|
3
5
|
import jax.numpy as jnp
|
4
6
|
import pytest
|
7
|
+
from jaxtyping import Array
|
5
8
|
|
6
9
|
from bayinx import Model, Parameter
|
7
10
|
from bayinx.dists import normal
|
@@ -13,7 +16,9 @@ from bayinx.mhx.vi.flows import FullAffine, Planar, Radial
|
|
13
16
|
@pytest.mark.parametrize("var_draws", [1, 10, 100])
|
14
17
|
def test_meanfield(benchmark, var_draws):
|
15
18
|
# Construct model definition
|
16
|
-
class NormalDist(Model):
|
19
|
+
class NormalDist(Model[Array]):
|
20
|
+
params: Dict[str, Parameter[Array]]
|
21
|
+
|
17
22
|
def __init__(self):
|
18
23
|
self.params = {"mu": Parameter(jnp.array([0.0, 0.0]))}
|
19
24
|
self.constraints = {}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|