diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-09 10:43:18 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-09 10:43:37 +0100 |
commit | 7d4cab7473cc9a9c4c831a6c83fa172bd7ab6f10 (patch) | |
tree | 90b3876bc4d055b80ca36c23439930fc303f4ca4 /gnu/packages/machine-learning.scm | |
parent | 983550692dbf5a41afef1b1cae53fece42b3d4bf (diff) | |
download | patches-7d4cab7473cc9a9c4c831a6c83fa172bd7ab6f10.tar patches-7d4cab7473cc9a9c4c831a6c83fa172bd7ab6f10.tar.gz |
gnu: Add openfst.
* gnu/packages/machine-learning.scm (openfst): New variable.
Diffstat (limited to 'gnu/packages/machine-learning.scm')
-rw-r--r-- | gnu/packages/machine-learning.scm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 039e5a0a49..1db5f4a256 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> @@ -371,6 +371,24 @@ value imputation, classifier creation, generalization error estimation and sample proximities between pairs of cases.") (license license:gpl3+))) +(define-public openfst + (package + (name "openfst") + (version "1.7.1") + (source (origin + (method url-fetch) + (uri (string-append "http://www.openfst.org/twiki/pub/FST/" + "FstDownload/openfst-" version ".tar.gz")) + (sha256 + (base32 + "0x9wfcqd8hq4h349s7j77sr60h8xjdfshqw1m3a2n6z5bdr9qkm1")))) + (build-system gnu-build-system) + (home-page "http://www.openfst.org") + (synopsis "Library for weighted finite-state transducers") + (description "OpenFst is a library for constructing, combining, +optimizing, and searching weighted finite-state transducers (FSTs).") + (license license:asl2.0))) + (define-public shogun (package (name "shogun") |