-
-
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.
feat: add asynchronous parallelization (#395)
* feat: add rush parallelization * fix: collate * fix: hotstart flag * feat: add rush to ti * refactor: add freeze_archive option * refactor: start workers * fix: start workers * fix: archive as.data.table * feat: add callbacks * refactor: objective tuning * docs: callbacks * test: objective tuning * docs: add missing params * fix: objective * docs: add parameter * feat: add rush measures callback * fix: pkgdown * feat: option to start workers when instance is created * feat: add async grid search * feat: save log messages from worker * feat: add debug messages * test: hotstarting works with rush * feat: add hotstart threshold * fix: resample result * refactor: TuningInstanceRush * benchmark: add setup * refactor: remove benchmark * draft * tests: pipeline * feat: log performance * fix: save default values * fix: insert values * chore: leanify * chore: import rush * feat: add errors and warnings * feat: add log messages to archive * feat: allow to pass rush instance * feat: add mlflow callback * feat: add auto tuner rush * feat: add rush * feat: as_tuner * refactor: async * draft * draft * draft * draft * draft * tests: skip async tests * draft * chore: pkgdown * fix: description * ci: remove as-cran flag * chore: update news * chore: news
- Loading branch information
Showing
153 changed files
with
5,620 additions
and
1,920 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 |
---|---|---|
|
@@ -35,6 +35,10 @@ jobs: | |
with: | ||
r-version: ${{ matrix.config.r }} | ||
|
||
- uses: supercharge/[email protected] | ||
with: | ||
redis-version: 7 | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
|
@@ -45,3 +49,5 @@ jobs: | |
shell: Rscript {0} | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
with: | ||
args: 'c("--no-manual")' # "--as-cran" prevents to start external processes |
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 |
---|---|---|
|
@@ -34,9 +34,15 @@ jobs: | |
with: | ||
r-version: ${{ matrix.config.r }} | ||
|
||
- uses: supercharge/[email protected] | ||
with: | ||
redis-version: 7 | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
with: | ||
args: 'c("--no-manual")' # "--as-cran" prevents to start external processes |
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 |
---|---|---|
|
@@ -182,5 +182,4 @@ revdep/ | |
# misc | ||
Meta/ | ||
attic/ | ||
inst/doc | ||
benchmark/ | ||
inst/docd |
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.