diff options
author | David Elsing <david.elsing@posteo.net> | 2025-01-22 18:32:24 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-01-27 14:42:41 +0100 |
commit | 40b21618f52f0a27e13926ffd0404257fae3320c (patch) | |
tree | c3f9406c006496164a9a9a57b6ef1afb6336f688 | |
parent | 09e78c34af071f1c0b09d673ed243829739a9239 (diff) |
gnu: python-torchvision: Update to 0.20.1.
* gnu/packages/machine-learning.scm (python-torchvision): Update to 0.20.1.
[native-inputs]: Add pybind11.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/machine-learning.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 66d076690c..0cd2db4ec6 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -5550,7 +5550,7 @@ implementations and an easy-to-use API to create custom metrics. It offers: (define-public python-torchvision (package (name "python-torchvision") - (version "0.19.0") + (version "0.20.1") (source (origin (method git-fetch) (uri (git-reference @@ -5560,7 +5560,7 @@ implementations and an easy-to-use API to create custom metrics. It offers: (file-name (git-file-name name version)) (sha256 (base32 - "15zyq2k4x9yapx7qfghhslznz1mwybhf086pirsr98c4l891sp1r")) + "1hxcpg44bjnfzqwihzbnfgd0gpkhfgqrcg116mnvdn0fpbhf4yq5")) (modules '((guix build utils))) (snippet '(begin @@ -5592,7 +5592,11 @@ implementations and an easy-to-use API to create custom metrics. It offers: python-pillow-simd python-pytorch)) (native-inputs - (list which python-pytest python-setuptools python-wheel)) + (list pybind11 + python-pytest + python-setuptools + python-wheel + which)) (home-page "https://pytorch.org/vision/stable/index.html") (synopsis "Datasets, transforms and models specific to computer vision") (description |