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

fix doc mistakes and broken links. #271

Merged
merged 19 commits into from
Nov 1, 2018
2 changes: 1 addition & 1 deletion docs/GetStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ An experiment is to run multiple trial jobs, each trial job tries a configuratio

This command will be filled in the yaml configure file below. Please refer to [here]() for how to write your own trial.

**Prepare tuner**: NNI supports several popular automl algorithms, including Random Search, Tree of Parzen Estimators (TPE), Evolution algorithm etc. Users can write their own tuner (refer to [here](CustomizedTuner.md)), but for simplicity, here we choose a tuner provided by NNI as below:
**Prepare tuner**: NNI supports several popular automl algorithms, including Random Search, Tree of Parzen Estimators (TPE), Evolution algorithm etc. Users can write their own tuner (refer to [here](howto_2_CustomizedTuner.md), but for simplicity, here we choose a tuner provided by NNI as below:

tuner:
builtinTunerName: TPE
Expand Down
4 changes: 1 addition & 3 deletions docs/InstallNNI_Ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@
wget

python pip should also be correctly installed. You could use "which pip" or "pip -V" to check in Linux.

* Note: we don't support virtual environment in current releases.

* __Install NNI through pip__

pip3 install -v --user git+https://github.com/Microsoft/nni.git@v0.1
pip3 install -v --user git+https://github.com/Microsoft/nni.git@v0.2
source ~/.bashrc

* __Install NNI through source code__
Expand Down
2 changes: 1 addition & 1 deletion docs/howto_2_CustomizedTuner.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Customized Tuner for Experts
# **How To** - Customize Your Own Tuner

*Tuner receive result from Trial as a matric to evaluate the performance of a specific parameters/architecture configure. And tuner send next hyper-parameter or architecture configure to Trial.*

Expand Down