-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* address various small issues * improve printer * address case when cache folder does not exist anymore * fix CRAN NOTE: bit64 unused (is used internally by data.table) by calling a random function from the package. * remove examples (to avoid issues with CRAN when OpenML is not available) * Improve README * Remove some unnecessary fields from OMLCollection object * Removed `benchmark_grid_oml()` function. * fix: documentation of sugar functions Because ocl no longer has argument `cache`, they cannot share the same documentation file. * caching cannot be set on the instance level anymore * docs: better docu how to find regression tasks * feat: add download method to OpenML objects * increment cache version for parquet parquet files were sometimes missing some columns which (seems to be) addressed now * import from bit64 just to silence CRAN warnings * fix: "Additional issues" of CRAN CHECK https://www.stats.ox.ac.uk/pub/bdr/clang17/README.txt * docs: add tutorial * improve printer of task split * make examples link to other resources * rename file * add pkgdown worklow * improve docs * fix pkgdown workflow * update readme * skip test on cran * fix cran issue * fix readme (undefined link)
- Loading branch information
1 parent
b15e959
commit 3e3e0fa
Showing
60 changed files
with
1,243 additions
and
1,160 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,5 @@ | |
^\.lintr$ | ||
^\.pre-commit-config\.yaml$ | ||
^cran-comments\.md$ | ||
^vignettes/articles$ | ||
^info$ |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# pkgdown workflow of the mlr3 ecosystem v0.1.0 | ||
# https://github.com/mlr-org/actions | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
release: | ||
types: | ||
- published | ||
workflow_dispatch: | ||
|
||
name: pkgdown | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
|
||
concurrency: | ||
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
|
||
- name: Install template | ||
run: pak::pkg_install("mlr-org/mlr3pkgdowntemplate") | ||
shell: Rscript {0} | ||
|
||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
- name: Deploy | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/github-pages-deploy-action@v4.4.1 | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
folder: docs |
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 |
---|---|---|
|
@@ -43,3 +43,5 @@ README.html | |
|
||
TODO.md | ||
lolz.R | ||
|
||
*.html |
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
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.