-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add example for hyperparam optimizer use case and debugg allow_multi_dim_metrics * test json serialization * Fixed issue with photon registry when multiple registry objects are issued with and without custom elements folder * Fixed registry test * dont write json transformer file if save_output = False * Fixed save_optimum_pipe function * Added tests for save_optimum_pipe * fixed save_optimum_pipe loading error * Fixed save_optimum_pipe bugfix * Added multiprocessing switch for parallel computing (#53) * Added multiprocessing switch for parallel computing * Debugging failing tests: Updated ubuntu and python * Fixed default multithreading behaviour * Changed versioning to pbr, resolved circular input errors, moved base… (#52) * Changed versioning to pbr, resolved circular input errors, moved base elements to __init__ * fixed import * Added missing pbr dependency * Fixed relative import * Removed circular import * Removed short description * Added pbr requirement * Updated GH-Actions * Fixed inferred versioning from metadata * Added description file content type * enabled build on pr and removed generation of version number * Changed keywords, updated gh actions * pypi publish action update * deactivated test pypi build for non master pushes. * Create dependabot.yml (#54) * Feature/new imports (#55) * Added new imports / modified examples * Added missing __init__ files * Added self hosted fonts for docs * gh action for documentation auto-update * fixed mkdocs path * removed graph stuff * Updated readme * add json serialization for non-native result objects, add warning for imbalanced classes with accuracy * debug imbalanced data transform unit test * debug unit tests * switched to processes for parallelBranch and PermutationTest * debug * Adapted gh action to new main branch * Adapted gh action for new main branch * refactor photonai output * removed ugly test results * added missing import * [skip ci] Added summary * Switched to diabetes dataset for sklearn compatibility * switched python tests from boston_housing to diabetes dataset * Fixed scikit-learn version due to currently missing support * Fixed scikit-learn version due to currently missing support * Fixed np bool --------- Co-authored-by: Jan Ernsting <[email protected]>
- Loading branch information
Showing
94 changed files
with
1,060 additions
and
309 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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,56 @@ | ||
name: Update documentation | ||
on: push | ||
|
||
jobs: | ||
build: | ||
name: Build docs | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref != 'refs/heads/main' }} | ||
steps: | ||
- name: Checkout main | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install mkdocs requirements | ||
run: pip install mkdocs mkdocs-material pymdown-extensions mkdocstrings-python mkdocs-jupyter jupyter mkdocs-macros-plugin | ||
|
||
- name: Install photonai requirements | ||
run: pip install -r requirements.txt | ||
|
||
- name: Install photonai | ||
run: pip install . | ||
|
||
- name: Build docs | ||
run: mkdocs build | ||
deploy: | ||
name: Deploy docs | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
steps: | ||
- name: Checkout main | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install mkdocs requirements | ||
run: pip install mkdocs mkdocs-material pymdown-extensions mkdocstrings-python mkdocs-jupyter jupyter mkdocs-macros-plugin | ||
|
||
- name: Install photonai requirements | ||
run: pip install -r requirements.txt | ||
|
||
- name: Install photonai | ||
run: pip install . | ||
|
||
- name: Deploy docs | ||
run: mkdocs gh-deploy --force |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,3 +181,6 @@ tmtagsHistory | |
.bundle | ||
/hyperpipe_results.csv | ||
/config_history.csv | ||
|
||
AUTHORS | ||
ChangeLog |
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.