Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Update Python dependencies #25

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
4 changes: 2 additions & 2 deletions examples/trials/mnist/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ authorName: default
experimentName: example_mnist
trialConcurrency: 1
maxExecDuration: 1h
maxTrialNum: 1
maxTrialNum: 5
#choice: local, remote
trainingServicePlatform: local
searchSpacePath: ~/nni/examples/trials/mnist/search_space.json
Expand All @@ -17,4 +17,4 @@ tuner:
trial:
command: python3 mnist.py
codeDir: ~/nni/examples/trials/mnist
gpuNum: 0
gpuNum: 0
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,13 @@ def run(self):
python_requires = '>=3.5',
install_requires = [
'astor',
'hyperopt',
'json_tricks',
'numpy',
'psutil',
'pymc3',
'pyyaml',
'requests',
'scipy'

],
dependency_links = [
'git+https://github.com/hyperopt/hyperopt.git',
],

cmdclass={
Expand Down
5 changes: 1 addition & 4 deletions src/sdk/pynni/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,5 @@ json_tricks

# hyperopt tuner
numpy
git+https://github.com/hyperopt/hyperopt.git#egg=hyperopt

# darkopt assessor
scipy
pymc3
hyperopt
5 changes: 1 addition & 4 deletions src/sdk/pynni/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,11 @@ def read(fname):

python_requires = '>=3.5',
install_requires = [
'hyperopt',
'json_tricks',
'numpy',
'pymc3',
'scipy',
],
dependency_links = [
'git+https://github.com/hyperopt/hyperopt.git',
],

test_suite = 'tests',

Expand Down