diff options
author | Wiktor Żelazny <wz@freeshell.de> | 2020-12-30 14:38:41 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-30 15:24:55 +0100 |
commit | 05c8c4f61fe3d5f70f705729e48e91a5c5927090 (patch) | |
tree | a337862d0a6e6ce790762e30f3ab5d1c28d68442 /gnu/packages/cran.scm | |
parent | debb5ad5e0a0785d8ffb6f5ab326685520223760 (diff) | |
download | guix-05c8c4f61fe3d5f70f705729e48e91a5c5927090.tar guix-05c8c4f61fe3d5f70f705729e48e91a5c5927090.tar.gz |
gnu: Add r-mlr3tuning.
* gnu/packages/cran.scm (r-mlr3tuning): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 28 |
1 files changed, 28 insertions, 0 deletions
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))) |