summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-05-10 22:39:26 +0100
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2025-05-31 17:47:51 +0300
commit2cf90f24ecb024dc24dc6e55680170a1e8b7b730 (patch)
treee2669ba63aad75da140bb320379bc8df7e895920
parent7c0b3802041435b63b62b58372b74f4caa73ad0d (diff)
gnu: Add python-zeus-mcmc.
* gnu/packages/statistics.scm (python-zeus-mcmc): New variable. Change-Id: Ibe7723ba4bbb301ef828744576508f0b0400f73f Signed-off-by: Artyom V. Poptsov <poptsov.artyom@gmail.com>
-rw-r--r--gnu/packages/statistics.scm41
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index b60fdbc841..0f9f25989c 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1328,6 +1328,47 @@ independence and others)
@end itemize")
(license license:bsd-3)))
+(define-public python-zeus-mcmc
+ (package
+ (name "python-zeus-mcmc")
+ (version "2.5.4")
+ (source
+ (origin
+ (method git-fetch) ; no tests in PyPI
+ (uri (git-reference
+ (url "https://github.com/minaskar/zeus")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0sci442fx2bkkj8169hwnx6psl7m2r8y1cicn1xjxxgqaby5j8pi"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-wheel))
+ (propagated-inputs
+ (list python-matplotlib
+ python-numpy
+ python-scikit-learn
+ python-scipy
+ python-seaborn
+ python-setuptools
+ python-tqdm))
+ (home-page "https://github.com/minaskar/zeus")
+ (synopsis "Deep learning energy measurement and optimization framework")
+ (description
+ "This package provides an implementation of the Ensemble Slice Sampling method.
+Features:
+@itemize
+@item fast & Robust Bayesian Inference
+@item efficient Markov Chain Monte Carlo (MCMC)
+@item black-box inference, no hand-tuning
+@item excellent performance in terms of autocorrelation time and convergence rate
+@item scale to multiple CPUs without any extra effort
+@item automated Convergence diagnostics
+@end itemize")
+ (license license:asl2.0)))
+
(define-public r-rversions
(package
(name "r-rversions")