Unverified Commit 456b390c authored by Yuge Zhang's avatar Yuge Zhang Committed by GitHub
Browse files

[doc] Full reference TOC (#4618)

parent 42c3076d
...@@ -41,8 +41,10 @@ class TPESampler(Sampler): ...@@ -41,8 +41,10 @@ class TPESampler(Sampler):
class TPE(BaseStrategy): class TPE(BaseStrategy):
""" """
The Tree-structured Parzen Estimator (TPE) :footcite:p:`bergstra2011algorithms` The Tree-structured Parzen Estimator (TPE) is a sequential model-based optimization (SMBO) approach.
is a sequential model-based optimization (SMBO) approach.
Refer to :footcite:t:`bergstra2011algorithms` for details.
SMBO methods sequentially construct models to approximate the performance of hyperparameters based on historical measurements, SMBO methods sequentially construct models to approximate the performance of hyperparameters based on historical measurements,
and then subsequently choose new hyperparameters to test based on this model. and then subsequently choose new hyperparameters to test based on this model.
""" """
......
...@@ -105,7 +105,7 @@ def parse_ids(args): ...@@ -105,7 +105,7 @@ def parse_ids(args):
3.If there is an id specified, return the corresponding id 3.If there is an id specified, return the corresponding id
4.If there is no id specified, and there is an experiment running, return the id, or return Error 4.If there is no id specified, and there is an experiment running, return the id, or return Error
5.If the id matches an experiment, nnictl will return the id. 5.If the id matches an experiment, nnictl will return the id.
6.If the id ends with *, nnictl will match all ids matchs the regular 6.If the id ends with ``*``, nnictl will match all ids matchs the regular
7.If the id does not exist but match the prefix of an experiment id, nnictl will return the matched id 7.If the id does not exist but match the prefix of an experiment id, nnictl will return the matched id
8.If the id does not exist but match multiple prefix of the experiment ids, nnictl will give id information 8.If the id does not exist but match multiple prefix of the experiment ids, nnictl will give id information
''' '''
......
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