mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-cleanlab: Update to 2.7.0.
* gnu/packages/machine-learning.scm (python-cleanlab): Update to 2.7.0. [arguments] <test-flags>: Ignore tests requiring Hugging Face datasets. [native-inputs]: Remove python-pytest-lazy-fixture; add python-typing-extensions. Change-Id: I7988b4c0b6dff10a44d4a1fbffa48b950158302c
This commit is contained in:
parent
5223530ab2
commit
574baf7cb5
1 changed files with 10 additions and 6 deletions
|
@ -2233,7 +2233,7 @@ standard feature selection algorithms.")
|
||||||
(define-public python-cleanlab
|
(define-public python-cleanlab
|
||||||
(package
|
(package
|
||||||
(name "python-cleanlab")
|
(name "python-cleanlab")
|
||||||
(version "2.6.3")
|
(version "2.7.0")
|
||||||
;; The version on pypi does not come with tests.
|
;; The version on pypi does not come with tests.
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -2243,7 +2243,7 @@ standard feature selection algorithms.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1f5iq4f8rzvn8scrwgfvc9qaqs9h159wiiy7wp6526frr67xk918"))))
|
"0f8v5246nzy22r7zswv9vbpxc7wxaqjwry9iq0fqjp2ffch88h6j"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -2257,7 +2257,10 @@ standard feature selection algorithms.")
|
||||||
;; the guix-science channel.
|
;; the guix-science channel.
|
||||||
"--ignore-glob=tests/datalab/**"
|
"--ignore-glob=tests/datalab/**"
|
||||||
;; Tries to download datasets from the internet at runtime.
|
;; Tries to download datasets from the internet at runtime.
|
||||||
"--ignore=tests/test_dataset.py")
|
"--ignore=tests/test_dataset.py"
|
||||||
|
;; Test requiring not packaged dataset.
|
||||||
|
"--ignore=tests/spurious_correlation/test_correlation_visualizer.py"
|
||||||
|
"--ignore=tests/spurious_correlation/test_spurious_correlation.py")
|
||||||
#:phases
|
#:phases
|
||||||
'(modify-phases %standard-phases
|
'(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'remove-datasets
|
(add-after 'unpack 'remove-datasets
|
||||||
|
@ -2270,11 +2273,12 @@ standard feature selection algorithms.")
|
||||||
python-termcolor
|
python-termcolor
|
||||||
python-tqdm))
|
python-tqdm))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest
|
(list ;; python-dataset ; https://github.com/huggingface/datasets
|
||||||
python-pytest-lazy-fixture
|
python-pytest
|
||||||
python-pytorch
|
python-pytorch
|
||||||
python-torchvision
|
|
||||||
python-setuptools
|
python-setuptools
|
||||||
|
python-torchvision
|
||||||
|
python-typing-extensions
|
||||||
python-wheel))
|
python-wheel))
|
||||||
(home-page "https://cleanlab.ai")
|
(home-page "https://cleanlab.ai")
|
||||||
(synopsis "Automatically find and fix dataset issues")
|
(synopsis "Automatically find and fix dataset issues")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue