forked from automl/SMAC3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Drop unnecessary requirements: sphinx, nose, six, statsmodels, cython * Remove optional dependencies from requirements.txt, move them to setup.py * Make a symlink to requirements.txt in the smac package and drop the copy-pasted __MANDATORY_PACKAGES__ * Split out optional dependencies as extras_require * Determine at runtime what optional dependencies are installed * Add lazy_import and use it to import lazily all optional dependencies at package init * SMBO: Determine default model hyperparameter based on extras_installed * Skip tests that require specific extras * Add an 'all' extra for installing all extra requirements * Update README and ci scripts * Fix .travis.yml to install optional dependencies * Update documentation building dependencies * Lazy import of scikit-optimize * Change sobol dependency from optional to required
- Loading branch information
1 parent
281e4d9
commit f659800
Showing
25 changed files
with
149 additions
and
75 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 +1,2 @@ | ||
include requirements.txt | ||
include requirements.txt | ||
include extras_require.json |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"gp": [ | ||
"emcee>=2.1.0", | ||
"scikit-optimize" | ||
], | ||
"lhd": [ | ||
"pyDOE" | ||
] | ||
} |
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,19 +1,10 @@ | ||
setuptools | ||
cython | ||
numpy>=1.7.1 | ||
scipy>=0.18.1 | ||
six | ||
psutil | ||
pynisher>=0.4.1 | ||
ConfigSpace>=0.4.6,<0.5 | ||
scikit-learn>=0.18.0 | ||
pyrfr>=0.8.0 | ||
sphinx | ||
sphinx_rtd_theme | ||
joblib | ||
nose>=1.3.0 | ||
pyDOE | ||
sobol_seq | ||
statsmodels | ||
emcee>=2.1.0 | ||
scikit-optimize | ||
joblib | ||
lazy_import |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../extras_require.json |
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.