Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
eab2bf2
#782 showcase pipeline components iteration
franchuterivera Apr 14, 2020
af7a9e6
Fixed flake-8 violations
franchuterivera Apr 14, 2020
73e013b
Clip predict values to [0-1] in classification
franchuterivera May 14, 2020
a25734c
Fix for 3.5 python!
franchuterivera May 14, 2020
fcdcdc5
Merge pull request #852 from franchuterivera/ensemble_probability01
mfeurer May 15, 2020
2ffe9dd
Merge pull request #828 from franchuterivera/782_examples
mfeurer May 18, 2020
2e457b9
Sensible default value of 'score_func' for SelectPercentileRegression…
XD-DENG May 19, 2020
e0ebe95
More robust tmp file naming (#854)
franchuterivera May 20, 2020
d43a1db
771 worst possible result (#845)
franchuterivera May 27, 2020
405eaa2
Add exceptions to log file, not just stdout (#863)
franchuterivera May 28, 2020
c695989
Add prediction with models trained with cross-validation (#864)
mfeurer May 28, 2020
87a3f95
715 ml memory (#865)
franchuterivera May 28, 2020
79f5839
Docs enhancement (#862)
franchuterivera May 28, 2020
57f99e8
Move to minmax scaler (#866)
franchuterivera Jun 9, 2020
d313f26
Do not read predictions in memory, only after score (#870)
franchuterivera Jun 13, 2020
47a3f12
Removal of competition manager (#869)
franchuterivera Jun 15, 2020
a67832a
Fix dataprocessing get params (#877)
franchuterivera Jun 15, 2020
003836d
Allow 1-D threshold binary predictions (#879)
franchuterivera Jun 15, 2020
536a16c
Ensemble selection mem improvements (#882)
franchuterivera Jul 3, 2020
ffead2b
Mb disc space limit for ensemble (#874)
franchuterivera Jul 3, 2020
edcb324
Automatic per run time limit selection (#884)
franchuterivera Jul 3, 2020
9f80794
Release notes for 071 (#887)
franchuterivera Jul 3, 2020
b180a37
bump version number for new release
mfeurer Jul 3, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ matrix:

include:
- os: linux
env: DISTRIB="conda" EXAMPLES="true" PYTHON="3.7" SKIP_TESTS="true"
env: DISTRIB="conda" DOCPUSH="true" PYTHON="3.7" SKIP_TESTS="true"
- os: linux
env: DISTRIB="conda" RUN_FLAKE8="true" SKIP_TESTS="true"
- os: linux
env: DISTRIB="conda" PYTHON="3.5"
- os: linux
env: DISTRIB="conda" COVERAGE="true" DOCPUSH="true" PYTHON="3.6"
env: DISTRIB="conda" COVERAGE="true" PYTHON="3.6"
- os: linux
env: DISTRIB="conda" TEST_DIST="true" PYTHON="3.7"
- os: linux
Expand Down Expand Up @@ -76,10 +76,10 @@ after_success: source ci_scripts/success.sh && source ci_scripts/create_doc.sh $

deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # set in the settings page of my repository
keep-hisotry: true
commiter-from-gh: true
skip_cleanup: true
github_token: $GITHUB_TOKEN # set in the settings page of my repository
keep-history: true
committer-from-gh: true
on:
all_branches: true
condition: $doc_result = "success"
Expand Down
2 changes: 1 addition & 1 deletion autosklearn/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.7.0"
__version__ = "0.7.1"
528 changes: 267 additions & 261 deletions autosklearn/automl.py

Large diffs are not rendered by default.

Loading