diff options
author | David Elsing <david.elsing@posteo.net> | 2024-03-23 22:05:08 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-06-18 11:45:35 +0200 |
commit | b38045190af622496c66b76e743a1a25518a743e (patch) | |
tree | 9dbf18fc6b4beb7fd0976d98eb976811cfff5244 /gnu/packages/machine-learning.scm | |
parent | 4f50f86e41d4bd44a0c3ab832a8595633b5493d3 (diff) | |
download | guix-b38045190af622496c66b76e743a1a25518a743e.tar.gz guix-b38045190af622496c66b76e743a1a25518a743e.zip |
gnu: Add ideep-pytorch-for-r-torch.
* gnu/packages/machine-learning.scm (ideep-pytorch-for-r-torch): New variable.
Diffstat (limited to 'gnu/packages/machine-learning.scm')
-rw-r--r-- | gnu/packages/machine-learning.scm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 1456a53e1e..ffcdc20d92 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -4336,6 +4336,21 @@ contains facebook extensions and is used by PyTorch.") PyTorch.") (license license:expat))) +(define-public ideep-pytorch-for-r-torch + (package + (inherit ideep-pytorch) + (version "2.7.3-1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/intel/ideep") + (commit (string-append "pytorch-rls-v" version)))) + (file-name (git-file-name (package-name ideep-pytorch) version)) + (sha256 + (base32 + "0hdpkhcjry22fjx2zg2r48v7f4ljrclzj0li2pgk76kvyblfbyvm")))))) + (define %python-pytorch-version "2.2.1") (define %python-pytorch-src |