-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* merge (#128) * 0.2.6 (#126) * 0.2.5 setup.py (#111) * [WIP] Attempts to Fix Memory Error (#112) * Add Website Badge in README.md, apply timeout in search function in search.py * Add timeout in maximize_acq function in search.py * Update unit test to allow timeout to raise TimeoutError * Add unit test for timeout resume * Remove TimeoutError from expectation * Check Timeout exception in search() in search.py * 0.2.5 setup.py (#110) * Prevent gpu memory copy to main process after train() finished * Cast loss from tensor to float * Add pass() in MockProcess * [MRG] Search Space limited to avoid out of memory (#121) * limited the search space * limited the search space * reduce search space * test added * [MRG]Pytorch mp (#124) * Change multiprcoessing to torch.multiprocessing * Replace multiprocessing.Pool with torch.multiprocessing.Pool in tests * 0.2.6 (#125) * new release * auto deploy * auto deploy of docs * fix the docs auto deploy * Create CNAME * deploy docs fixed * update * bug fix (#127) * setup.py * rm print * Issue#37 and Issue #79 Save keras model/autokeras model (#122) * Issue #37 Export Keras model * Issue #79 Save autokeras model * Issue #37 and Issue#79 Fixed comments * Issue #37 and Issue #79 * Issue #37 and Issue #79 * Issue #37 and Issue #79 Fixed pytests * Issue #37 and Issue #79 * quick fix test * Progbar (#143) * 0.2.6 (#126) * 0.2.5 setup.py (#111) * [WIP] Attempts to Fix Memory Error (#112) * Add Website Badge in README.md, apply timeout in search function in search.py * Add timeout in maximize_acq function in search.py * Update unit test to allow timeout to raise TimeoutError * Add unit test for timeout resume * Remove TimeoutError from expectation * Check Timeout exception in search() in search.py * 0.2.5 setup.py (#110) * Prevent gpu memory copy to main process after train() finished * Cast loss from tensor to float * Add pass() in MockProcess * [MRG] Search Space limited to avoid out of memory (#121) * limited the search space * limited the search space * reduce search space * test added * [MRG]Pytorch mp (#124) * Change multiprcoessing to torch.multiprocessing * Replace multiprocessing.Pool with torch.multiprocessing.Pool in tests * 0.2.6 (#125) * new release * auto deploy * auto deploy of docs * fix the docs auto deploy * Create CNAME * deploy docs fixed * update * bug fix (#127) * setup.py * contribute guide * Add Progress Bar * Update utils.py * Update search.py * update constant (#145)
- Loading branch information
1 parent
b6a9812
commit 112dddb
Showing
9 changed files
with
193 additions
and
26 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
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
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 |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
packages=['autokeras'], # this must be the same as the name above | ||
install_requires=['torch==0.4.1', 'torchvision==0.2.1', 'numpy>=1.15.1', 'keras==2.2.2', 'scikit-learn==0.19.1', | ||
'tensorflow>=1.10.1'], | ||
version='0.2.7', | ||
version='0.2.8', | ||
description='AutoML for deep learning', | ||
author='Haifeng Jin', | ||
author_email='[email protected]', | ||
url='http://autokeras.com', | ||
download_url='https://github.com/jhfjhfj1/autokeras/archive/0.2.7.tar.gz', | ||
download_url='https://github.com/jhfjhfj1/autokeras/archive/0.2.8.tar.gz', | ||
keywords=['automl'], # arbitrary keywords | ||
classifiers=[] | ||
) |
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