Skip to content
This repository has been archived by the owner on Jul 31, 2021. It is now read-only.

Commit

Permalink
applied mlr_styler; revised separation of config parameters; linting …
Browse files Browse the repository at this point in the history
…ok; tidy up descr
  • Loading branch information
kapsner committed Apr 5, 2020
1 parent 2c6683c commit 91387f2
Show file tree
Hide file tree
Showing 14 changed files with 1,610 additions and 1,299 deletions.
38 changes: 20 additions & 18 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Package: mlr3learners.lightgbm
Title: mlr3: LightGBM learner
Version: 0.0.4.9006
Version: 0.0.4.9007
Date: 2020-04-05
Authors@R:
c(person(given = "Lorenz A.",
family = "Kapsner",
Expand All @@ -12,33 +13,34 @@ Authors@R:
role = "ctb",
email = "patrick.schratz@gmail.com",
comment = c(ORCID = "0000-0003-0748-6624")))
Description: Adds `lgb.train()` from the lightgbm package to mlr3.
Description: Adds `lgb.train()` from the lightgbm package to
mlr3.
License: LGPL-3
LazyData: true
URL: https://github.com/kapsner/mlr3learners.lightgbm
BugReports: https://github.com/kapsner/mlr3learners.lightgbm/issues
Encoding: UTF-8
Date: 2020-04-04
VignetteBuilder: knitr
BugReports:
https://github.com/kapsner/mlr3learners.lightgbm/issues
Depends:
R (>= 2.10)
Imports:
data.table,
R6,
paradox,
mlr3misc,
ggplot2,
MLmetrics,
mlr3,
mlr3misc,
paradox,
plyr,
MLmetrics
R6
Suggests:
testthat,
lintr,
checkmate,
rmarkdown,
qpdf,
knitr,
future,
knitr,
lintr,
mlbench,
mlr3tuning,
mlbench
qpdf,
rmarkdown,
testthat
VignetteBuilder:
knitr
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.1.0
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ importFrom(R6,R6Class)
importFrom(mlr3,LearnerClassif)
importFrom(mlr3,LearnerRegr)
importFrom(mlr3,mlr_learners)
importFrom(plyr,revalue)
Loading

1 comment on commit 91387f2

@lintr-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

R/zzz.R:14:29: warning: no visible binding for global variable ‘LearnerClassifLightGBM’

x$add("classif.lightgbm", LearnerClassifLightGBM)
                            ^~~~~~~~~~~~~~~~~~~~~~

R/zzz.R:15:26: warning: no visible binding for global variable ‘LearnerRegrLightGBM’

x$add("regr.lightgbm", LearnerRegrLightGBM)
                         ^~~~~~~~~~~~~~~~~~~

Please sign in to comment.