Skip to content

Commit

Permalink
docs: add rmd readme
Browse files Browse the repository at this point in the history
  • Loading branch information
be-marc committed Sep 14, 2024
1 parent 6a1166a commit 0d40732
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,4 @@ rsconnect/
/attic/
.Rprofile
kaggle/
README.html
53 changes: 53 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
output: github_document
---

```{r, include = FALSE}
lgr::get_logger("mlr3")$set_threshold("warn")
lgr::get_logger("bbotk")$set_threshold("warn")
set.seed(1)
options(
datatable.print.nrows = 10,
datatable.print.class = FALSE,
datatable.print.keys = FALSE,
width = 100)
# mute load messages
library("mlr3automl")
```

# mlr3automl <img src="man/figures/logo.png" align="right" width = "120" />

Package website: [release](https://mlr3automl.mlr-org.com/) | [dev](https://mlr3automl.mlr-org.com/dev/)

<!-- badges: start -->
[![r-cmd-check](https://github.com/mlr-org/mlr3automl/actions/workflows/r-cmd-check.yml/badge.svg)](https://github.com/mlr-org/mlr3automl/actions/workflows/r-cmd-check.yml)
[![CRAN Status](https://www.r-pkg.org/badges/version-ago/mlr3automl)](https://cran.r-project.org/package=mlr3automl)
[![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/)
<!-- badges: end -->

*mlr3automl* is the Automated Machine Learning (AutoML) package of the [mlr3](https://mlr-org.com/) ecosystem.

## Installation

Install the development version from GitHub:

```{r eval = FALSE}
remotes::install_github("mlr-org/mlr3automl")
```

## Examples

```{r eval = FALSE}
library("mlr3automl")
rush_plan(n_workers = 2)
task = tsk("spam")
learner = lrn("classif.auto",
terminator = trm("evals", n_evals = 100)
)
learner$train(task)
```
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# mlr3automl <img src="man/figures/logo.png" align="right" width = "120" />

Package website: [release](https://mlr3automl.mlr-org.com/) \|
[dev](https://mlr3automl.mlr-org.com/dev/)

<!-- badges: start -->

[![r-cmd-check](https://github.com/mlr-org/mlr3automl/actions/workflows/r-cmd-check.yml/badge.svg)](https://github.com/mlr-org/mlr3automl/actions/workflows/r-cmd-check.yml)
Expand Down

0 comments on commit 0d40732

Please sign in to comment.