summaryrefslogtreecommitdiff
path: root/gnu/packages/machine-learning.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/machine-learning.scm')
-rw-r--r--gnu/packages/machine-learning.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 3918d32d2f6..367d7495ce3 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -997,6 +997,31 @@ good at identifying feature interactions that are normally overlooked by
997standard feature selection algorithms.") 997standard feature selection algorithms.")
998 (license license:expat))) 998 (license license:expat)))
999 999
1000(define-public python-cmaes
1001 (package
1002 (name "python-cmaes")
1003 (version "0.8.2")
1004 (source
1005 (origin
1006 (method git-fetch) ;no tests in PyPI
1007 (uri (git-reference
1008 (url "https://github.com/CyberAgent/cmaes")
1009 (commit (string-append "v" version))))
1010 (sha256
1011 (base32 "1jyckaifir528dz6m95nvky8hvqmz5gz6dlp65baahhbca0danzb"))
1012 (file-name (git-file-name name version))))
1013 (build-system python-build-system)
1014 (native-inputs
1015 `(("python-setuptools" ,python-setuptools) ;build fails without this
1016 ("python-wheel" ,python-wheel)))
1017 (propagated-inputs
1018 `(("python-numpy" ,python-numpy)))
1019 (home-page "https://github.com/CyberAgent/cmaes")
1020 (synopsis "CMA-ES implementation for Python")
1021 (description "This package provides provides an implementation of the
1022Covariance Matrix Adaptation Evolution Strategy (CMA-ES) for Python.")
1023 (license license:expat)))
1024
1000(define-public python-autograd 1025(define-public python-autograd
1001 (let* ((commit "442205dfefe407beffb33550846434baa90c4de7") 1026 (let* ((commit "442205dfefe407beffb33550846434baa90c4de7")
1002 (revision "0") 1027 (revision "0")