nni/tools
SparkSnail 9fe3578bad upgrade version to v0.1.1 (#103)
* upgrade NNI sdk and nnictl version from v0.1.0 to v0.1.1
2018-09-20 14:26:53 +08:00
..
nni_annotation Merge from dogfood branch to master 2018-09-07 19:49:21 +08:00
nnicmd refactor experiment information 2018-09-14 12:23:46 +08:00
README.md NNI dogfood version 1 2018-08-20 16:13:47 +08:00
nnictl NNI dogfood version 1 2018-08-20 16:13:47 +08:00
setup.py upgrade version to v0.1.1 (#103) 2018-09-20 14:26:53 +08:00

README.md

##NNI CTL The NNI CTL module is used to control Neural Network Intelligence, including start a new experiment, stop an experiment and update an experiment etc.
##Environment

Ubuntu 16.04 or other Linux OS
python >= 3.5

##Installation 1.Enter tools directory

2.Use pip3 to install packages

2.1 Install for current user:

 pip3 install --user -e .

2.2 Install for all users:

 pip3 install -e .

3.Change the mode of nnictl file

chmod +x ./nnictl

4.Add nnictl to your PATH system environment variable.

  • You could use export command to set PATH variable temporary.

      export PATH={your nnictl path}:$PATH  
    
  • Or you could edit your /etc/profile file.

      1.sudo vim /etc/profile
    
      2.At the end of the file, add
    
          export PATH={your nnictl path}:$PATH
    
        save and exit.
    
      3.source /etc/profile 
    

##To start using NNI CTL please reference to the NNI CTL document.