diff options
Diffstat (limited to 'gnu/packages/machine-learning.scm')
-rw-r--r-- | gnu/packages/machine-learning.scm | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 23f5e775c8..4f3f740745 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -4943,20 +4943,18 @@ in the audio domain.") python-sympy))))) (define-public python-pytorch-geometric - (let ((commit "85cf9fc12b1138c1f2adbed8a761356c3f4197e7") - (revision "0")) (package (name "python-pytorch-geometric") - (version (git-version "2.6.1" revision commit)) + (version "2.7.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/pyg-team/pytorch_geometric/") - (commit commit))) + (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "104v3w9yv7akyxpyd8aq85mw1mncql8mvr1p1b34ph09csqh68hq")))) + "0w6gpw0wf9w6h317mbqcf3iidx9yqjba34348p44g80ihskb6ly6")))) (build-system pyproject-build-system) (arguments (list @@ -5031,7 +5029,7 @@ in the audio domain.") (description "PyG is a library built upon PyTorch to easily write and train Graph Neural Networks for a wide range of applications related to structured data.") - (license license:expat)))) + (license license:expat))) (define-public python-lightning-cloud (package @@ -5191,20 +5189,18 @@ feedback.") (license license:expat))) (define-public python-pytorch-lightning - (let ((commit "1617f70428a791b2d81c392d6a0b8a078d8e7fb1") - (revision "0")) (package (name "python-pytorch-lightning") - (version (git-version "2.5.2" revision commit)) + (version "2.5.5") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/Lightning-AI/pytorch-lightning") - (commit commit))) + (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "1i11n4094a8ysb7cj1lww23nh0mk3d9licw9c9pgzws2m0qy70yd")))) + "1xjib19kk8nfncr7cmd0j1czazvjzrprayarw275b75i0szda87h")))) (build-system pyproject-build-system) (arguments (list @@ -5283,7 +5279,7 @@ feedback.") (description "PyTorch Lightning is just organized PyTorch; Lightning disentangles PyTorch code to decouple the science from the engineering.") - (license license:asl2.0)))) + (license license:asl2.0))) (define-public python-torchmetrics (package |