Skip to content

Commit

Permalink
docs: fix links to extralearner package in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sebffischer authored Oct 23, 2023
2 parents e032e59 + c37c17e commit 17f93b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ tab = as.data.table(mlr_learners)
tab[sapply(properties, is.element, el = "importance"), key]
```

If your learner is not listed here but capable of extracting variable importance from the fitted model, the reason is most likely that it is not yet integrated in the package [mlr3learners](https://github.com/mlr-org/mlr3learners) or the [extra learner organization](https://github.com/mlr3learners).
If your learner is not listed here but capable of extracting variable importance from the fitted model, the reason is most likely that it is not yet integrated in the package [mlr3learners](https://github.com/mlr-org/mlr3learners) or the [extra learner extension](https://github.com/mlr-org/mlr3extralearners).
Please open an issue so we can add your package.

Some learners need to have their variable importance measure "activated" during learner creation.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ head(as.data.table(filter$calculate(task)))
|:------------------|:---------------------------------------------------------|:---------------|:---------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------|
| anova | ANOVA F-Test | Classif | Integer, Numeric | stats |
| auc | Area Under the ROC Curve Score | Classif | Integer, Numeric | [mlr3measures](https://cran.r-project.org/package=mlr3measures) |
| carscore | Correlation-Adjusted coRrelation Score | Regr | Numeric | [care](https://cran.r-project.org/package=care) |
| carscore | Correlation-Adjusted coRrelation Score | Regr | Logical, Integer, Numeric | [care](https://cran.r-project.org/package=care) |
| carsurvscore | Correlation-Adjusted coRrelation Survival Score | Surv | Integer, Numeric | [carSurv](https://cran.r-project.org/package=carSurv), [mlr3proba](https://cran.r-project.org/package=mlr3proba) |
| cmim | Minimal Conditional Mutual Information Maximization | Classif & Regr | Integer, Numeric, Factor, Ordered | [praznik](https://cran.r-project.org/package=praznik) |
| correlation | Correlation | Regr | Integer, Numeric | stats |
Expand Down Expand Up @@ -99,8 +99,8 @@ If your learner is not listed here but capable of extracting variable
importance from the fitted model, the reason is most likely that it is
not yet integrated in the package
[mlr3learners](https://github.com/mlr-org/mlr3learners) or the [extra
learner organization](https://github.com/mlr3learners). Please open an
issue so we can add your package.
learner extension](https://github.com/mlr-org/mlr3extralearners).
Please open an issue so we can add your package.

Some learners need to have their variable importance measure “activated”
during learner creation. For example, to use the “impurity” measure of
Expand All @@ -116,10 +116,10 @@ filter$calculate(task)
head(as.data.table(filter), 3)
```

## feature score
## 1: Petal.Length 43.19847
## 2: Petal.Width 43.11627
## 3: Sepal.Length 10.62848
## feature score
## 1: Petal.Length 44.682462
## 2: Petal.Width 43.113031
## 3: Sepal.Length 9.039099

### Performance Filter

Expand Down

0 comments on commit 17f93b3

Please sign in to comment.