gpjax 0.8.1__tar.gz → 0.8.2__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.
- {gpjax-0.8.1 → gpjax-0.8.2}/PKG-INFO +2 -1
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/__init__.py +1 -1
- {gpjax-0.8.1 → gpjax-0.8.2}/pyproject.toml +2 -1
- {gpjax-0.8.1 → gpjax-0.8.2}/LICENSE +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/README.md +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/base/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/base/module.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/base/param.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/citation.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/dataset.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/decision_maker.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/posterior_handler.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/search_space.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/test_functions/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/test_functions/continuous_functions.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/test_functions/non_conjugate_functions.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/utility_functions/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/utility_functions/base.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/utility_functions/thompson_sampling.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/utility_maximizer.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/decision_making/utils.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/distributions.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/fit.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/flax_base/bijectors.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/flax_base/param.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/flax_base/types.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/gps.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/integrators.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/approximations/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/approximations/rff.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/base.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/computations/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/computations/base.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/computations/basis_functions.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/computations/constant_diagonal.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/computations/dense.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/computations/diagonal.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/computations/eigen.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/non_euclidean/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/non_euclidean/graph.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/non_euclidean/utils.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/nonstationary/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/nonstationary/arccosine.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/nonstationary/linear.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/nonstationary/polynomial.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/__init__.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/matern12.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/matern32.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/matern52.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/periodic.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/powered_exponential.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/rational_quadratic.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/rbf.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/utils.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/kernels/stationary/white.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/likelihoods.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/lower_cholesky.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/mean_functions.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/objectives.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/progress_bar.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/scan.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/typing.py +0 -0
- {gpjax-0.8.1 → gpjax-0.8.2}/gpjax/variational_families.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gpjax
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: Gaussian processes in JAX.
|
|
5
5
|
Home-page: https://github.com/JaxGaussianProcesses/GPJax
|
|
6
6
|
License: Apache-2.0
|
|
@@ -16,6 +16,7 @@ Requires-Dist: beartype (>=0.16.2,<0.17.0)
|
|
|
16
16
|
Requires-Dist: cola-ml (>=0.0.5,<0.0.6)
|
|
17
17
|
Requires-Dist: jax (>=0.4.16)
|
|
18
18
|
Requires-Dist: jaxlib (>=0.4.16)
|
|
19
|
+
Requires-Dist: jaxopt (>=0.8.3,<0.9.0)
|
|
19
20
|
Requires-Dist: jaxtyping (>=0.2.15,<0.3.0)
|
|
20
21
|
Requires-Dist: optax (>=0.1.4,<0.2.0)
|
|
21
22
|
Requires-Dist: orbax-checkpoint (>=0.2.3)
|
|
@@ -38,7 +38,7 @@ __license__ = "MIT"
|
|
|
38
38
|
__description__ = "Didactic Gaussian processes in JAX"
|
|
39
39
|
__url__ = "https://github.com/JaxGaussianProcesses/GPJax"
|
|
40
40
|
__contributors__ = "https://github.com/JaxGaussianProcesses/GPJax/graphs/contributors"
|
|
41
|
-
__version__ = "0.8.
|
|
41
|
+
__version__ = "0.8.2"
|
|
42
42
|
|
|
43
43
|
__all__ = [
|
|
44
44
|
"base",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "gpjax"
|
|
3
|
-
version = "0.8.
|
|
3
|
+
version = "0.8.2"
|
|
4
4
|
description = "Gaussian processes in JAX."
|
|
5
5
|
authors = [
|
|
6
6
|
"Thomas Pinder <tompinder@live.co.uk>",
|
|
@@ -27,6 +27,7 @@ jax = ">=0.4.16"
|
|
|
27
27
|
jaxlib = ">=0.4.16"
|
|
28
28
|
orbax-checkpoint = ">=0.2.3"
|
|
29
29
|
cola-ml = "^0.0.5"
|
|
30
|
+
jaxopt = "^0.8.3"
|
|
30
31
|
|
|
31
32
|
[tool.poetry.group.test.dependencies]
|
|
32
33
|
pytest = "^7.2.2"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|