mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add r-kernlab.
* gnu/packages/machine-learning.scm (r-kernlab): New variable.
This commit is contained in:
parent
6335bf1c80
commit
f05c7eb48d
1 changed files with 22 additions and 0 deletions
|
@ -479,6 +479,28 @@ (define-public r-nnet
|
|||
single hidden layer, and for multinomial log-linear models.")
|
||||
(license (list license:gpl2+ license:gpl3+))))
|
||||
|
||||
(define-public r-kernlab
|
||||
(package
|
||||
(name "r-kernlab")
|
||||
(version "0.9-25")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "kernlab" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0qnaq9x3j2xc6jrmmd98wc6hkzch487s4p3a9lnc00xvahkhgpmr"))))
|
||||
(build-system r-build-system)
|
||||
(home-page "http://cran.r-project.org/web/packages/kernlab")
|
||||
(synopsis "Kernel-based machine learning tools")
|
||||
(description
|
||||
"This package provides kernel-based machine learning methods for
|
||||
classification, regression, clustering, novelty detection, quantile regression
|
||||
and dimensionality reduction. Among other methods @code{kernlab} includes
|
||||
Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
|
||||
and a QP solver.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public dlib
|
||||
(package
|
||||
(name "dlib")
|
||||
|
|
Loading…
Reference in a new issue