-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: offset column role in Task #1225
base: main
Are you sure you want to change the base?
Changes from all commits
032c4b4
b271502
76ae35a
0f1b465
b43a1e4
aaf3f38
dbc591d
adbbcbf
dbe05cc
8e3e5d6
ed58474
d88e493
afce34c
a8e0469
339c4ab
fd729db
3943c9e
caae259
a24b6ac
0806838
e380fd4
8bd0ab7
e9d651e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,9 @@ Authors@R: | |
comment = c(ORCID = "0000-0002-8115-0400")), | ||
person("Sebastian", "Fischer", , "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0002-9609-3197")), | ||
person("Lona", "Koers", , "[email protected]", role = "ctb") | ||
person("Lona", "Koers", , "[email protected]", role = "ctb"), | ||
person("John", "Zobolas", , "[email protected]", role = "ctb", | ||
comment = c(ORCID = "0000-0002-3609-8674")) | ||
) | ||
Description: Efficient, object-oriented programming on the | ||
building blocks of machine learning. Provides 'R6' objects for tasks, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,12 @@ | |
#' The following properties are currently standardized and understood by learners in \CRANpkg{mlr3}: | ||
#' * `"missings"`: The learner can handle missing values in the data. | ||
#' * `"weights"`: The learner supports observation weights. | ||
#' * `"offset"`: The learner can incorporate offset values to adjust predictions. | ||
#' * `"importance"`: The learner supports extraction of importance scores, i.e. comes with an `$importance()` extractor function (see section on optional extractors in [Learner]). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @be-marc here |
||
#' * `"selected_features"`: The learner supports extraction of the set of selected features, i.e. comes with a `$selected_features()` extractor function (see section on optional extractors in [Learner]). | ||
#' * `"oob_error"`: The learner supports extraction of estimated out of bag error, i.e. comes with a `oob_error()` extractor function (see section on optional extractors in [Learner]). | ||
#' * `"validation"`: The learner can use a validation task during training. | ||
#' * `"internal_tuning"`: The learner is able to internally optimize hyperparameters (those are also tagged with `"internal_tuning"`). | ||
#' * `"marshal"`: To save learners with this property, you need to call `$marshal()` first. | ||
#' If a learner is in a marshaled state, you call first need to call `$unmarshal()` to use its model, e.g. for prediction. | ||
#' |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe use a shorter circuit (something like
mlr3misc::some
)