Skip to content

Commit

Permalink
Branch after init (#11)
Browse files Browse the repository at this point in the history
* fix: get_private in callbacks

* chore: add catboost and mlr3oml to dependencies

* refactor: move classif class to new file

* feat: build graph after init

* fix: set_validate

* refactor: build graph only if emptys

* test: fix glmnet test

* test: fix early stopping

* refactor: package

* tests: disable parallel tests

* docs: fix

* tests: fix

* tests: remove logger callback

---------

Co-authored-by: be-marc <[email protected]>
  • Loading branch information
b-zhou and be-marc authored Jul 25, 2024
1 parent c98d39d commit 8cc4e41
Show file tree
Hide file tree
Showing 24 changed files with 1,270 additions and 1,195 deletions.
2 changes: 1 addition & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
^CRAN-SUBMISSION$
^man/figures$
.vscode
^kaggle/$
^kaggle$
50 changes: 24 additions & 26 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -12,56 +12,54 @@ URL: https://github.com/mlr-org/mlr3automl
BugReports: https://github.com/mlr-org/mlr3automl/issues
Depends:
mlr3 (>= 0.20.0),
mlr3learners (>= 0.7.0),
mlr3extralearners,
mlr3learners (>= 0.7.0),
mlr3tuning (>= 1.0.0),
R (>= 3.1.0),
rush
Imports:
bbotk,
checkmate,
data.table,
e1071,
future,
ggplot2,
glmnet,
kknn,
lhs,
lightgbm,
MASS,
mlr3mbo,
mlr3misc (>= 0.15.1),
mlr3pipelines,
mlr3tuningspaces,
nnet,
paradox (>= 1.0.0),
paradox (>= 1.0.1),
R6,
ranger,
rpart,
xgboost,
utils,
stats,
ggparty,
partykit,
utils
Suggests:
catboost,
e1071,
glmnet,
kknn,
lightgbm,
lgr,
MASS,
mlr3viz,
testthat (>= 3.0.0)
nnet,
ranger,
rpart,
testthat (>= 3.0.0),
xgboost
Remotes:
catboost/catboost/catboost/R-package,
mlr-org/mlr3@learner_size,
mlr-org/mlr3mbo@adbo,
mlr-org/mlr3learners@mlr3automl,
mlr-org/mlr3extralearners@mlr3automl,
mlr-org/mlr3learners@mlr3automl,
mlr-org/mlr3mbo@adbo,
mlr-org/mlr3pipelines
Config/testthat/edition: 3
Config/testthat/parallel: false
Encoding: UTF-8
NeedsCompilation: no
Roxygen: list(markdown = TRUE, r6 = TRUE)
RoxygenNote: 7.3.1
RoxygenNote: 7.3.2
Collate:
'aaa.R'
'LearnerAutoBranch.R'
'autoplot.R'
'LearnerClassifAuto.R'
'LearnerClassifAutoSVM.R'
'LearnerClassifAutoXgboost.R'
'LearnerRegrAuto.R'
'helper.R'
'mlr_callbacks.R'
'reexports.R'
'zzz.R'
16 changes: 7 additions & 9 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
# Generated by roxygen2: do not edit by hand

S3method(autoplot,LearnerClassifAutoBranch)
export(LearnerAutoBranch)
export(LearnerClassifAutoBranch)
export(autoplot)
export(fortify)
export(LearnerClassifAuto)
export(LearnerClassifAutoSVM)
export(LearnerClassifAutoXgboost)
export(LearnerRegrAuto)
import(R6)
import(bbotk)
import(checkmate)
import(data.table)
import(ggplot2)
import(lhs)
import(mlr3)
import(mlr3extralearners)
import(mlr3learners)
import(mlr3mbo)
import(mlr3misc)
import(mlr3pipelines)
import(mlr3tuning)
import(mlr3tuningspaces)
import(paradox)
importFrom(ggplot2,autoplot)
importFrom(ggplot2,fortify)
importFrom(rush,rush_config)
Loading

0 comments on commit 8cc4e41

Please sign in to comment.