gnu: Add python-cleanlab-1.

* gnu/packages/machine-learning.scm (python-cleanlab-1): New variable.
This commit is contained in:
Ricardo Wurmus 2022-12-09 16:54:21 +01:00
parent eb23379828
commit 91d4a78f41
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1329,6 +1329,31 @@ (define-public python-cleanlab
data by providing clean labels during training.")
(license license:agpl3+)))
(define-public python-cleanlab-1
(package
(inherit python-cleanlab)
(name "python-cleanlab")
(version "1.0.1")
;; The version on pypi does not come with tests.
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cleanlab/cleanlab")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"03kw2agnhadmrq9zvrlvvlc2c37dpflga5nhmsaag8scw223gqyp"))))
(build-system pyproject-build-system)
(arguments (list))
(propagated-inputs
(list python-numpy
python-scikit-learn
python-scipy
python-tqdm))
(native-inputs
(list python-pytest))))
(define-public python-cmaes
(package
(name "python-cmaes")