-
Notifications
You must be signed in to change notification settings - Fork 303
Final changes for v0.1.0 #341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2d2f6d1
[enhance] Increase the coverage (#336)
nabenabe0928 1e06cce
[feat] Support statistics print by adding results manager object (#334)
nabenabe0928 a676c2b
Update for release (#335)
ravinkohli 7e67e56
[feat] Add templates for issue and PR with the Ravin's suggestions (#…
nabenabe0928 10df650
[doc] Add the workflow of the Auto-Pytorch (#285)
nabenabe0928 751b9ce
[FIX] Silence catboost (#338)
ravinkohli 9d93085
change worst possible result of r2 (#340)
ravinkohli f7e9cf8
Update README.md with link for master branch
ravinkohli 5b65244
[FIX formatting in docs (#342)
ravinkohli ef8d21a
Update README.md, remove cat requirements.txt
ravinkohli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,48 @@ | ||
| NOTE: ISSUES ARE NOT FOR CODE HELP - Ask for Help at https://stackoverflow.com | ||
|
|
||
| Your issue may already be reported! | ||
| Also, please search on the [issue tracker](../) before creating one. | ||
|
|
||
| * **I'm submitting a ...** | ||
| - [ ] bug report | ||
| - [ ] feature request | ||
| - [ ] support request => Please do not submit support request here, see note at the top of this template. | ||
|
|
||
| # Issue Description | ||
| * When Issue Happens | ||
| * Steps To Reproduce | ||
| 1. | ||
| 1. | ||
| 1. | ||
|
|
||
| ## Expected Behavior | ||
| <!--- If you're describing a bug, tell us what should happen --> | ||
| <!--- If you're suggesting a change/improvement, tell us how it should work --> | ||
|
|
||
| ## Current Behavior | ||
| <!--- If describing a bug, tell us what happens instead of the expected behavior --> | ||
| <!--- If suggesting a change/improvement, explain the difference from current behavior --> | ||
|
|
||
| ## Possible Solution | ||
| <!--- Not obligatory, but suggest a fix/reason for the bug, --> | ||
| <!--- or ideas how to implement the addition or change --> | ||
|
|
||
| ## Your Code | ||
|
|
||
| ``` | ||
| If relevant, paste all of your challenge code here | ||
| ``` | ||
|
|
||
| ## Error message | ||
|
|
||
| ``` | ||
| If relevant, paste all of your error messages here | ||
| ``` | ||
|
|
||
| ## Your Local environment | ||
| * Operating System, version | ||
| * Python, version | ||
| * Outputs of `pip freeze` or `conda list` | ||
|
|
||
| Make sure to add **all the information needed to understand the bug** so that someone can help. | ||
| If the info is missing, we'll add the 'Needs more information' label and close the issue until there is enough information. |
This file contains hidden or 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,38 @@ | ||
| <!--- Provide a general summary of your changes in the Title above --> | ||
|
|
||
| ## Types of changes | ||
| <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
| - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
| - [ ] Bug fix (non-breaking change which fixes an issue) | ||
| - [ ] New feature (non-breaking change which adds functionality) | ||
|
|
||
| Note that a Pull Request should only contain one of refactoring, new features or documentation changes. | ||
| Please separate these changes and send us individual PRs for each. | ||
| For more information on how to create a good pull request, please refer to [The anatomy of a perfect pull request](https://medium.com/@hugooodias/the-anatomy-of-a-perfect-pull-request-567382bb6067). | ||
|
|
||
| ## Checklist: | ||
| <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
| <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
| - [ ] My code follows the code style of this project. | ||
| - [ ] My change requires a change to the documentation. | ||
| - [ ] I have updated the documentation accordingly. | ||
| * [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same update/change? | ||
| * [ ] Have you added an explanation of what your changes do and why you'd like us to include them? | ||
| * [ ] Have you written new tests for your core changes, as applicable? | ||
| * [ ] Have you successfully ran tests with your changes locally? | ||
| <!-- | ||
| * [ ] Have you followed the guidelines in our Contributing document? | ||
| --> | ||
|
|
||
|
|
||
| ## Description | ||
| <!--- Describe your changes in detail --> | ||
|
|
||
| ## Motivation and Context | ||
| <!--- Why is this change required? What problem does it solve? --> | ||
| <!--- If it fixes an open issue, please link to the issue here. --> | ||
|
|
||
| ## How has this been tested? | ||
| <!--- Please describe in detail how you tested your changes. --> | ||
| <!--- Include details of your testing environment, tests ran to see how --> | ||
| <!--- your change affects other areas of the code, etc. --> |
This file contains hidden or 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,33 @@ | ||
| name: Push to PyPi | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: "ubuntu-latest" | ||
|
|
||
| steps: | ||
| - name: Checkout source | ||
| uses: actions/checkout@v2 | ||
|
|
||
| - name: Set up Python 3.8 | ||
| uses: actions/setup-python@v1 | ||
| with: | ||
| python-version: 3.8 | ||
|
|
||
| - name: Install build dependencies | ||
| run: python -m pip install build wheel | ||
|
|
||
| - name: Build distributions | ||
| shell: bash -l {0} | ||
| run: python setup.py sdist bdist_wheel | ||
|
|
||
| - name: Publish package to PyPI | ||
| if: github.repository == 'automl/Auto-PyTorch' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
| uses: pypa/gh-action-pypi-publish@master | ||
| with: | ||
| user: __token__ | ||
| password: ${{ secrets.pypi_token }} |
This file contains hidden or 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,19 @@ | ||
| preferred-citation: | ||
| type: article | ||
| authors: | ||
| - family-names: "Zimmer" | ||
| given-names: "Lucas" | ||
| affiliation: "University of Freiburg, Germany" | ||
| - family-names: "Lindauer" | ||
| given-names: "Marius" | ||
| affiliation: "University of Freiburg, Germany" | ||
| - family-names: "Hutter" | ||
| given-names: "Frank" | ||
| affiliation: "University of Freiburg, Germany" | ||
| doi: "10.1109/TPAMI.2021.3067763" | ||
| journal-title: "IEEE Transactions on Pattern Analysis and Machine Intelligence" | ||
| title: "Auto-PyTorch Tabular: Multi-Fidelity MetaLearning for Efficient and Robust AutoDL" | ||
| year: 2021 | ||
| note: "also available under https://arxiv.org/abs/2006.13799" | ||
| start: 3079 | ||
| end: 3090 |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.