me
/
guix
Archived
1
0
Fork 0

gnu: Add python-fasttext.

* gnu/packages/machine-learning.scm (python-fasttext): New variable.
master
Ricardo Wurmus 2023-09-07 21:39:48 +02:00
parent 6d60d7ccba
commit 72745172d1
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 9 additions and 0 deletions

View File

@ -137,6 +137,15 @@
representations and sentence classification.")
(license license:expat)))
(define-public python-fasttext
(package
(inherit fasttext)
(name "python-fasttext")
(build-system pyproject-build-system)
(propagated-inputs (list python-numpy python-scipy))
(inputs (list fasttext))
(native-inputs (list pybind11))))
(define-public fann
;; The last release is >100 commits behind, so we package from git.
(let ((commit "d71d54788bee56ba4cf7522801270152da5209d7"))