-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RandomizedSearchCV Implementation (#132)
* add RandomizedSearchCV class * add RandomizedSearchrchCV to namespace * add scipy version * tests for RandomizedSearchCV * PEP8 4ever * refactor GridSearchCV and RandomizedSearchCV using an abstract base class * remove version parser * add scipy>=1.0.0 to all requirements.txt * unit test for _parse_options helper function * use copies of params * remove extraneous print from test_search.py * linting * linting round 2 😅 * Update utils.py * Update utils.py * style consistency (docstrings, minor spelling fix) 🎨 * update sphinx docs to leave out base class
- Loading branch information
1 parent
9c637e3
commit 5d3aa27
Showing
7 changed files
with
559 additions
and
132 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
joblib>=0.11 | ||
numpy>=1.11.2 | ||
scipy>=1.0.0 | ||
six>=1.10.0 | ||
joblib>=0.11 |
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
# Requirements file for development | ||
Cython>=0.24.1 | ||
flake8>=3.2.1 | ||
joblib>=0.11 | ||
numpy>=1.11.2 | ||
cython>=0.24.1 | ||
six>=1.10.0 | ||
pandas | ||
pytest>=3.0.3 | ||
scipy>=1.0.0 | ||
six>=1.10.0 | ||
sphinx>=1.4.9 | ||
sphinx_rtd_theme | ||
sphinxcontrib-bibtex | ||
sphinxcontrib-spelling | ||
flake8>=3.2.1 | ||
pandas | ||
joblib>=0.11 |
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# Requirements file for travis | ||
numpy>=1.11.2 | ||
Cython>=0.24.1 | ||
six>=1.10.0 | ||
flake8>=3.2.1 | ||
joblib>=0.11 | ||
numpy>=1.11.2 | ||
pandas | ||
pytest>=3.0.3 | ||
scipy>=1.0.0 | ||
six>=1.10.0 | ||
sphinx>=1.4.9 | ||
sphinx_rtd_theme | ||
sphinxcontrib-bibtex | ||
flake8>=3.2.1 | ||
pandas | ||
joblib>=0.11 |
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.