Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mlr-org/mlr3inferr
Statistical methods for inference on the generalization error
https://github.com/mlr-org/mlr3inferr
machine-learning r statistics
Last synced: about 2 months ago
JSON representation
Statistical methods for inference on the generalization error
- Host: GitHub
- URL: https://github.com/mlr-org/mlr3inferr
- Owner: mlr-org
- License: lgpl-3.0
- Created: 2024-07-08T12:07:28.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-14T16:38:01.000Z (4 months ago)
- Last Synced: 2024-08-15T13:14:18.440Z (4 months ago)
- Topics: machine-learning, r, statistics
- Language: R
- Homepage: https://mlr3inferr.mlr-org.com/
- Size: 1.54 MB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
cache = FALSE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
library(mlr3)
library(mlr3misc)
set.seed(1)
lgr::get_logger("mlr3")$set_threshold("warn")
```Methods for statistical *inf*erence on the generalization *err*or.
[Package website](https://mlr3inferr.mlr-org.com/)
[![RCMD Check](https://github.com/mlr-org/mlr3inferr/actions/workflows/r-cmd-check.yml/badge.svg)](https://github.com/mlr-org/mlr3inferr/actions/workflows/r-cmd-check.yml)
[![CRAN status](https://www.r-pkg.org/badges/version/mlr3inferr)](https://CRAN.R-project.org/package=mlr3inferr)
[![StackOverflow](https://img.shields.io/badge/stackoverflow-mlr3-orange.svg)](https://stackoverflow.com/questions/tagged/mlr3)
[![Mattermost](https://img.shields.io/badge/chat-mattermost-orange.svg)](https://lmmisld-lmu-stats-slds.srv.mwn.de/mlr_invite/)## Installation
```{r, eval = FALSE}
pak::pkg_install("mlr-org/mlr3inferr")
```## What is `mlr3inferr`?
The main purpose of the package is to allow to obtain confidence intervals for the generalization error for a number of resampling methods.
Below, we evaluate a decision tree on the sonar task using a holdout resampling and obtain a confidence interval for the generalization error.
This is achieved using the `msr("ci.holdout")` measure, to which we pass another `mlr3::Measure` that determines the loss function.```{r}
library(mlr3inferr)rr = resample(tsk("sonar"), lrn("classif.rpart"), rsmp("holdout"))
# 0.05 is also the default
ci = msr("ci.holdout", "classif.acc", alpha = 0.05)
rr$aggregate(ci)
```It is also possible to select the default inference method for a certain `Resampling` method using `msr("ci")`
```{r}
ci_default = msr("ci", "classif.acc")
rr$aggregate(ci_default)
```With [`mlr3viz`](https://mlr3viz.mlr-org.com), it is also possible to visualize multiple confidence intervals.
Below, we compare a random forest with a decision tree and a featureless learner:```{r, dpi = 300, out.width = "70%", fig.align = "center"}
library(mlr3learners)
library(mlr3viz)bmr = benchmark(benchmark_grid(
tsks(c("sonar", "german_credit")),
lrns(c("classif.rpart", "classif.ranger", "classif.featureless")),
rsmp("subsampling")
))autoplot(bmr, "ci", msr("ci", "classif.ce"))
```Note that:
* Confidence Intervals can only be obtained for measures that are based on pointwise loss functions, i.e. have an `$obs_loss` field.
* Not for every resampling method exists an inference method.
* There are combinations of datasets and learners, where inference methods can fail.## Features
* Additional Resampling Methods
* Confidence Intervals for the Generalization Error for some resampling methods## Inference Methods
```{r, echo = FALSE}
content = as.data.table(mlr3::mlr_measures, objects = TRUE)[startsWith(get("key"), "ci."),]
content$resamplings = map(content$object, "resamplings")
content = content[, c("key", "label", "resamplings")]
knitr::kable(content, format = "markdown", col.names = tools::toTitleCase(names(content)))
```## Bugs, Questions, Feedback
*mlr3inferr* is a free and open source software project that
encourages participation and feedback. If you have any issues,
questions, suggestions or feedback, please do not hesitate to open an
“issue” about it on the GitHub page\!In case of problems / bugs, it is often helpful if you provide a
“minimum working example” that showcases the behaviour (but don’t
worry about this if the bug is obvious).Please understand that the resources of the project are limited:
response may sometimes be delayed by a few days, and some feature
suggestions may be rejected if they are deemed too tangential to the
vision behind the project.