me
/
guix
Archived
1
0
Fork 0

gnu: Add python-autograd-gamma.

* gnu/packages/machine-learning.scm (python-autograd-gamma): New variable.

Change-Id: I2b73b247388c06774afbf09df322acdc1d327eaf
master
Ricardo Wurmus 2024-06-16 22:48:10 +02:00
parent d55c728f71
commit 75ebca9e8f
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 0 deletions

View File

@ -150,6 +150,26 @@
representations and sentence classification.")
(license license:expat)))
(define-public python-autograd-gamma
(package
(name "python-autograd-gamma")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "autograd-gamma" version))
(sha256
(base32 "1i699a9m5ndnj8cwzjjf2agb77aawhzrzxfbmn5zrkxridxvnypj"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-autograd python-scipy))
(home-page "https://github.com/CamDavidsonPilon/autograd-gamma")
(synopsis
"Autograd-compatible approximations to the gamma family of functions")
(description
"This package provides Autograd-compatible approximations to the gamma
family of functions.")
(license license:expat)))
(define-public python-fasttext
(package
(inherit fasttext)