Commit 1d960d45 authored by Yuge Zhang's avatar Yuge Zhang Committed by QuanluZhang
Browse files

fix hyperopt version (#1625)

parent fd551c86
...@@ -232,7 +232,7 @@ For NNI on Windows, please refer to [NNI on Windows](docs/en_US/Tutorial/NniOnWi ...@@ -232,7 +232,7 @@ For NNI on Windows, please refer to [NNI on Windows](docs/en_US/Tutorial/NniOnWi
**Verify install** **Verify install**
The following example is an experiment built on TensorFlow. Make sure you have **TensorFlow installed** before running it. The following example is an experiment built on TensorFlow. Make sure you have **TensorFlow 1.x installed** before running it. Note that **currently Tensorflow 2.0 is NOT supported**.
* Download the examples via clone the source code. * Download the examples via clone the source code.
......
...@@ -73,7 +73,7 @@ setuptools.setup( ...@@ -73,7 +73,7 @@ setuptools.setup(
'requests', 'requests',
'astor', 'astor',
'PythonWebHDFS', 'PythonWebHDFS',
'hyperopt', 'hyperopt==0.1.2',
'json_tricks', 'json_tricks',
'numpy', 'numpy',
'scipy', 'scipy',
......
...@@ -48,7 +48,7 @@ setup( ...@@ -48,7 +48,7 @@ setup(
python_requires = '>=3.5', python_requires = '>=3.5',
install_requires = [ install_requires = [
'astor', 'astor',
'hyperopt', 'hyperopt==0.1.2',
'json_tricks', 'json_tricks',
'numpy', 'numpy',
'psutil', 'psutil',
......
...@@ -4,7 +4,7 @@ json_tricks ...@@ -4,7 +4,7 @@ json_tricks
# hyperopt tuner # hyperopt tuner
numpy numpy
scipy scipy
hyperopt hyperopt==0.1.2
# metis tuner # metis tuner
sklearn sklearn
...@@ -32,7 +32,7 @@ setuptools.setup( ...@@ -32,7 +32,7 @@ setuptools.setup(
python_requires = '>=3.5', python_requires = '>=3.5',
install_requires = [ install_requires = [
'hyperopt', 'hyperopt==0.1.2',
'json_tricks', 'json_tricks',
'numpy', 'numpy',
'scipy', 'scipy',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment