GNU bug report logs - #45553
[PATCH 0/3] Add r-mlr3 add-ons.

Previous Next

Package: guix-patches;

Reported by: Wiktor Żelazny <wz <at> freeshell.de>

Date: Wed, 30 Dec 2020 13:37:02 UTC

Severity: normal

Tags: patch

Done: Ricardo Wurmus <rekado <at> elephly.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 45553 in the body.
You can then email your comments to 45553 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#45553; Package guix-patches. (Wed, 30 Dec 2020 13:37:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Wiktor Żelazny <wz <at> freeshell.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 30 Dec 2020 13:37:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: guix-patches <at> gnu.org
Subject: [PATCH 0/3] Add r-mlr3 add-ons.
Date: Wed, 30 Dec 2020 14:35:55 +0100
I also prepared r-mlr3pipelines and r-mlr3ordinal, but the former is
non-deterministic and the latter uses the former as an input. I need to
take a closer look at r-mlr3pipelines.

Wiktor Żelazny (3):
  gnu: Add r-mlr3learners.
  gnu: Add r-bbotk.
  gnu: Add r-mlr3tuning.

 gnu/packages/cran.scm | 82 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 82 insertions(+)


base-commit: c386de05fbcebf7c178327ca98326be20ba6ccb5
-- 
2.29.2





Information forwarded to guix-patches <at> gnu.org:
bug#45553; Package guix-patches. (Wed, 30 Dec 2020 13:40:03 GMT) Full text and rfc822 format available.

Message #8 received at 45553 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: 45553 <at> debbugs.gnu.org
Subject: [PATCH 1/3] gnu: Add r-mlr3learners.
Date: Wed, 30 Dec 2020 14:38:39 +0100
* gnu/packages/cran.scm (r-mlr3learners): New variable.
---
 gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 0483af3d6b..362978c2a3 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -25493,3 +25493,29 @@ scalability and larger datasets by supporting parallelization and out-of-memory
 data-backends like databases.  While @code{mlr3} focuses on the core
 computational operations, add-on packages provide additional functionality.")
     (license license:lgpl3)))
+
+(define-public r-mlr3learners
+  (package
+    (name "r-mlr3learners")
+    (version "0.4.3")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "mlr3learners" version))
+              (sha256
+               (base32
+                "1wxlpzz3hpkn77n4ag1v868dmp140j1pmrhynsv5xfgk9fg0w7ri"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-data-table" ,r-data-table)
+       ("r-mlr3" ,r-mlr3)
+       ("r-mlr3misc" ,r-mlr3misc)
+       ("r-paradox" ,r-paradox)
+       ("r-r6" ,r-r6)))
+    (home-page "https://mlr3learners.mlr-org.com/")
+    (synopsis "Recommended Learners for @code{mlr3}")
+    (description "@code{mlr3learners} extends @code{mlr3} and @code{mlr3proba}
+with interfaces to essential machine learning packages on CRAN.  This includes,
+but is not limited to: (penalized) linear and logistic regression, linear and
+quadratic discriminant analysis, k-nearest neighbors, naive Bayes, support
+vector machines, and gradient boosting.")
+    (license license:lgpl3)))
-- 
2.29.2





Information forwarded to guix-patches <at> gnu.org:
bug#45553; Package guix-patches. (Wed, 30 Dec 2020 13:40:05 GMT) Full text and rfc822 format available.

Message #11 received at 45553 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: 45553 <at> debbugs.gnu.org
Subject: [PATCH 2/3] gnu: Add r-bbotk.
Date: Wed, 30 Dec 2020 14:38:40 +0100
* gnu/packages/cran.scm (r-bbotk): New variable.
---
 gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 362978c2a3..a31e08fce5 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -25519,3 +25519,31 @@ but is not limited to: (penalized) linear and logistic regression, linear and
 quadratic discriminant analysis, k-nearest neighbors, naive Bayes, support
 vector machines, and gradient boosting.")
     (license license:lgpl3)))
+
+(define-public r-bbotk
+  (package
+    (name "r-bbotk")
+    (version "0.2.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "bbotk" version))
+       (sha256
+        (base32
+         "06iz6gyymcxkbjiw049v1dk3vjfni646z247q08i2s0x59sqfqxv"))))
+    (properties `((upstream-name . "bbotk")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-checkmate" ,r-checkmate)
+       ("r-data-table" ,r-data-table)
+       ("r-lgr" ,r-lgr)
+       ("r-mlr3misc" ,r-mlr3misc)
+       ("r-paradox" ,r-paradox)
+       ("r-r6" ,r-r6)))
+    (home-page "https://bbotk.mlr-org.com")
+    (synopsis "Black-Box Optimization Toolkit")
+    (description "This package provides a common framework for optimization of
+black-box functions for other packages, e.g. @code{mlr3}.  It offers various
+optimization methods e.g. grid search, random search and generalized simulated
+annealing.")
+    (license license:lgpl3)))
-- 
2.29.2





Information forwarded to guix-patches <at> gnu.org:
bug#45553; Package guix-patches. (Wed, 30 Dec 2020 13:40:06 GMT) Full text and rfc822 format available.

Message #14 received at 45553 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: 45553 <at> debbugs.gnu.org
Subject: [PATCH 3/3] gnu: Add r-mlr3tuning.
Date: Wed, 30 Dec 2020 14:38:41 +0100
* gnu/packages/cran.scm (r-mlr3tuning): New variable.
---
 gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index a31e08fce5..40f8e82c34 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -25547,3 +25547,31 @@ black-box functions for other packages, e.g. @code{mlr3}.  It offers various
 optimization methods e.g. grid search, random search and generalized simulated
 annealing.")
     (license license:lgpl3)))
+
+(define-public r-mlr3tuning
+  (package
+    (name "r-mlr3tuning")
+    (version "0.5.0")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "mlr3tuning" version))
+              (sha256
+               (base32
+                "1pn80qjxzj2pivgs6qgairci6yh1bdnl2zbgl9ykdip2rqzv6r6m"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-bbotk" ,r-bbotk)
+       ("r-checkmate" ,r-checkmate)
+       ("r-data-table" ,r-data-table)
+       ("r-lgr" ,r-lgr)
+       ("r-mlr3" ,r-mlr3)
+       ("r-mlr3misc" ,r-mlr3misc)
+       ("r-paradox" ,r-paradox)
+       ("r-r6" ,r-r6)))
+    (home-page "https://mlr3tuning.mlr-org.com/")
+    (synopsis "Tuning for @code{mlr3}")
+    (description "@code{mlr3tuning} implements methods for hyperparameter
+tuning, e.g. Grid Search, Random Search, or Simulated Annealing.  Various
+termination criteria can be set and combined.  The class @code{AutoTuner} provides a
+convenient way to perform nested resampling in combination with @code{mlr3}.")
+    (license license:lgpl3)))
-- 
2.29.2





Reply sent to Ricardo Wurmus <rekado <at> elephly.net>:
You have taken responsibility. (Wed, 30 Dec 2020 14:34:02 GMT) Full text and rfc822 format available.

Notification sent to Wiktor Żelazny <wz <at> freeshell.de>:
bug acknowledged by developer. (Wed, 30 Dec 2020 14:34:02 GMT) Full text and rfc822 format available.

Message #19 received at 45553-done <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Wiktor Żelazny <wz <at> freeshell.de>
Cc: 45553-done <at> debbugs.gnu.org
Subject: Re: [bug#45553] [PATCH 0/3] Add r-mlr3 add-ons.
Date: Wed, 30 Dec 2020 15:32:32 +0100
Wiktor Żelazny <wz <at> freeshell.de> writes:

> I also prepared r-mlr3pipelines and r-mlr3ordinal, but the former is
> non-deterministic and the latter uses the former as an input. I need to
> take a closer look at r-mlr3pipelines.
>
> Wiktor Żelazny (3):
>   gnu: Add r-mlr3learners.
>   gnu: Add r-bbotk.
>   gnu: Add r-mlr3tuning.

Thank you, pushed with commit 05c8c4f61f.

For r-mlr3pipelines search the code for DATE, as sometimes literal build
time stamps are included.

-- 
Ricardo




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 28 Jan 2021 12:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 82 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.