gnu: Remove python-keras-applications.

* gnu/packages/machine-learning.scm (python-keras-applications): Delete
variable.

Fixes: guix/guix#1044
Change-Id: I660badf1115ef3480594f2d8e8b8ec441114050e
This commit is contained in:
Andreas Enge 2025-08-06 11:16:26 +02:00
parent 6732741a3f
commit 496a089a11
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -4104,32 +4104,6 @@ any function). It currently contains the interface and IO code from the Shap
project, and it will potentially also do the same for the Lime project.")
(license license:expat)))
(define-public python-keras-applications
(package
(name "python-keras-applications")
(version "1.0.8")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Keras_Applications" version))
(sha256
(base32
"1rcz31ca4axa6kzhjx4lwqxbg4wvlljkj8qj9a7p9sfd5fhzjyam"))))
(build-system python-build-system)
;; The tests require Keras, but this package is needed to build Keras.
(arguments '(#:tests? #f))
(propagated-inputs
(list python-h5py python-numpy))
(native-inputs
(list python-pytest python-pytest-cov
python-pytest-xdist))
(home-page "https://github.com/keras-team/keras-applications")
(synopsis "Reference implementations of popular deep learning models")
(description
"This package provides reference implementations of popular deep learning
models for use with the Keras deep learning framework.")
(license license:expat)))
(define-public gloo
(let ((version "0.0.0") ; no proper version tag
(commit "81925d1c674c34f0dc34dd9a0f2151c1b6f701eb")