forked from microsoft/nni
-
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.
Merge pull request #61 from Microsoft/master
merge master
- Loading branch information
Showing
34 changed files
with
261 additions
and
166 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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04 | ||
FROM nvidia/cuda:9.0-cudnn7-runtime-ubuntu16.04 | ||
|
||
LABEL maintainer='Microsoft NNI Team<[email protected]>' | ||
|
||
|
@@ -53,7 +53,7 @@ RUN python3 -m pip --no-cache-dir install \ | |
# | ||
#Install NNI | ||
# | ||
RUN python3 -m pip install --user nni | ||
RUN python3 -m pip install nni | ||
|
||
# | ||
#Tensorflow 1.10.0 | ||
|
@@ -68,6 +68,6 @@ RUN python3 -m pip --no-cache-dir install Keras==2.1.6 | |
#sklearn | ||
RUN python3 -m pip --no-cache-dir install scikit-learn | ||
|
||
ENV PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/root/.local/bin:/usr/bin: | ||
ENV PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/root/.local/bin:/usr/bin:/bin:/sbin | ||
|
||
WORKDIR /root |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
setuptools.setup( | ||
name = 'nni', | ||
version = '0.3.2', | ||
version = '0.3.4', | ||
author = 'Microsoft NNI team', | ||
author_email = '[email protected]', | ||
description = 'Neural Network Intelligence package', | ||
|
@@ -32,7 +32,8 @@ | |
'pyyaml', | ||
'psutil', | ||
'requests', | ||
'astor' | ||
'astor', | ||
'pyhdfs' | ||
], | ||
classifiers = [ | ||
'Programming Language :: Python :: 3', | ||
|
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
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,6 +1,7 @@ | ||
{ | ||
"dropout_rate":{"_type":"uniform","_value":[0.1,0.5]}, | ||
"dropout_rate":{"_type":"uniform","_value":[0.5, 0.9]}, | ||
"conv_size":{"_type":"choice","_value":[2,3,5,7]}, | ||
"hidden_size":{"_type":"choice","_value":[124, 512, 1024]}, | ||
"batch_size": {"_type":"choice", "_value": [1, 4, 8, 16, 32]}, | ||
"learning_rate":{"_type":"choice","_value":[0.0001, 0.001, 0.01, 0.1]} | ||
} |
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 |
---|---|---|
|
@@ -35,7 +35,7 @@ def run(self): | |
|
||
setup( | ||
name = 'nni', | ||
version = '0.3.2', | ||
version = '0.3.4', | ||
author = 'Microsoft NNI Team', | ||
author_email = '[email protected]', | ||
description = 'Neural Network Intelligence project', | ||
|
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
Oops, something went wrong.