-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #123 from ModelOriented/Hubert_issues
Update to forester 1.5.0 with multiclass classification
- Loading branch information
Showing
144 changed files
with
8,724 additions
and
7,193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
Package: forester | ||
Type: Package | ||
Title: Quick and Simple Tools for Training and Testing of Tree-based Models | ||
Version: 1.4.2 | ||
Version: 1.5.0 | ||
Authors@R: | ||
c(person("Hubert", "Ruczyński", role = c("aut", "cre"), email = "[email protected]"), | ||
person("Anna", "Kozak", role = c("aut", "ths"), email = "[email protected]"), | ||
person("Patryk", "Słowakiewicz", role = c("aut"), email = "[email protected]"), | ||
person("Adrianna", "Grudzień", role = c("aut"), email = "[email protected]"), | ||
person("Przemysław", "Biecek", role = c("aut", "ths"), email = "[email protected]")) | ||
Description: Extendable set of tools to facilitate training, tuning and testing | ||
of tree-based models. | ||
Designed to quickly produce a good baseline model, that can be further tuned manually. | ||
The primary value generated by the forester package is to promptly build a baseline for other, | ||
more complex models. | ||
Description: The forester package is an open-source AutoML package implemented in R designed for | ||
training high-quality tree-based models on tabular data. It fully supports regression, binary | ||
classification, and multiclass classification tasks, and provides a limited support for | ||
the survival analysis task. A single line of code allows the use of unprocessed datasets, informs | ||
about potential issues concerning them, and handles feature engineering automatically. | ||
Moreover, hyperparameter tuning is performed by Bayesian optimization, which provides | ||
high-quality outcomes. The results are later served as a ranked list of models. Finally, the | ||
forester package offers a vast training report, including the ranked list, a comparison of | ||
trained models, and explanations for the best one. | ||
License: GPL-3 | ||
Depends: | ||
R (>= 3.5.0), | ||
patchwork | ||
Imports: | ||
ranger, | ||
xgboost, | ||
|
@@ -34,15 +41,14 @@ Imports: | |
stats, | ||
tibble, | ||
crayon, | ||
VIM, | ||
patchwork | ||
VIM | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.3.1 | ||
URL: https://github.com/ModelOriented/forester | ||
BugReports: https://github.com/ModelOriented/forester/issues | ||
Suggests: | ||
testthat (>= 3.0.0), | ||
testthat (>= 3.5.0), | ||
catboost, | ||
DALEX, | ||
ggradar, | ||
|
@@ -56,6 +62,6 @@ Suggests: | |
survival, | ||
randomForestSRC, | ||
sivs | ||
Config/testthat/edition: 3 | ||
Config/testthat/edition: 3.5 | ||
VignetteBuilder: | ||
knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.