guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: Add r-mlapi.


From: guix-commits
Subject: 01/05: gnu: Add r-mlapi.
Date: Tue, 29 Jun 2021 06:29:51 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit ae00ea94aa14097c61b15cbac016baeacdd1113a
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Jun 29 12:27:35 2021 +0200

    gnu: Add r-mlapi.
    
    * gnu/packages/cran.scm (r-mlapi): New variable.
---
 gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c2785e5..ed83498 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -17810,6 +17810,33 @@ they are often difficult to interpret.  Rex allows you 
to build complex
 regular expressions from human readable expressions")
     (license license:expat)))
 
+(define-public r-mlapi
+  (package
+    (name "r-mlapi")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "mlapi" version))
+       (sha256
+        (base32
+         "023vk5bp8cjcq88sapkl87kdxr92bay1dyxl6xirnyj699pyj51k"))))
+    (properties `((upstream-name . "mlapi")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-matrix" ,r-matrix)
+       ("r-r6" ,r-r6)))
+    (native-inputs
+     `(("r-knitr" ,r-knitr)))
+    (home-page "https://cran.r-project.org/package=mlapi";)
+    (synopsis "Abstract classes for building scikit-learn like API")
+    (description
+     "This package provides R6 abstract classes for building machine learning
+models with a scikit-learn like API.  Scikit-learn is a popular module for the
+Python programming language whose design became a de facto standard in
+industry for machine learning tasks.")
+    (license license:expat)))
+
 (define-public r-xmlparsedata
   (package
     (name "r-xmlparsedata")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]