mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add python-autograd-gamma.
* gnu/packages/machine-learning.scm (python-autograd-gamma): New variable. Change-Id: I2b73b247388c06774afbf09df322acdc1d327eaf
This commit is contained in:
parent
d55c728f71
commit
75ebca9e8f
1 changed files with 20 additions and 0 deletions
|
@ -150,6 +150,26 @@ (define-public fasttext
|
|||
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)
|
||||
|
|
Loading…
Reference in a new issue