gnu: Add r-rcppml/devel.

* gnu/packages/machine-learning.scm (r-rcppml/devel): New variable.
This commit is contained in:
Ricardo Wurmus 2023-06-02 19:53:47 +02:00
parent f09944461f
commit 76eda50717
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -48,6 +48,7 @@ (define-module (gnu packages machine-learning)
#:use-module (guix build-system ocaml)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix build-system r)
#:use-module (guix build-system trivial)
#:use-module (guix git-download)
#:use-module (gnu packages)
@ -602,6 +603,33 @@ (define-public randomjungle
sample proximities between pairs of cases.")
(license license:gpl3+)))
(define-public r-rcppml/devel
(let ((commit "e685b3bd7909d3ae74c98f85f81bc0bb679bce23")
(revision "1"))
(package
(name "r-rcppml-devel")
(version (git-version "0.5.6" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/zdebruine/RcppML")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"18ykh9s9h3x79az7qm3pg48iqm0nmkh2wkppc9wx0lq7kjfqm67a"))))
(properties `((upstream-name . "RcppML")))
(build-system r-build-system)
(propagated-inputs (list r-matrix r-rcpp))
(native-inputs (list r-knitr))
(home-page "https://github.com/zdebruine/RcppML")
(synopsis "Rcpp machine learning Library")
(description
"This package provides fast machine learning algorithms including
matrix factorization and divisive clustering for large sparse and dense
matrices.")
(license license:gpl3+))))
(define-public openfst
(package
(name "openfst")