@@ -90,12 +90,6 @@ All types of sampling strategies and their parameter are listed here:
...
@@ -90,12 +90,6 @@ All types of sampling strategies and their parameter are listed here:
Known Limitations:
Known Limitations:
* Note that In Grid Search Tuner, for users' convenience, the definition of `quniform` and `qloguniform` change, where q here specifies the number of values that will be sampled. Details about them are listed as follows
* Type 'quniform' will receive three values [low, high, q], where [low, high] specifies a range and 'q' specifies the number of values that will be sampled evenly. Note that q should be at least 2. It will be sampled in a way that the first sampled value is 'low', and each of the following values is (high-low)/q larger that the value in front of it.
* Type 'qloguniform' behaves like 'quniform' except that it will first change the range to [log(low), log(high)] and sample and then change the sampled value back.
* Note that Metis Tuner only supports numerical `choice` now
* Note that Metis Tuner only supports numerical `choice` now
Type 'choice' will select one of the options. Note that it can also be nested.
Type 'choice' will select one of the options. Note that it can also be nested.
Type 'quniform' will receive three values [low, high, q], where [low, high] specifies a range and 'q' specifies the number of values that will be sampled evenly.
Type 'quniform' will receive three values [low, high, q], where [low, high] specifies a range and 'q' specifies the interval
Note that q should be at least 2.
It will be sampled in a way that the first sampled value is 'low', and each of the following values is 'interval' larger that the value in front of it.
It will be sampled in a way that the first sampled value is 'low', and each of the following values is (high-low)/q larger that the value in front of it.
Type 'qloguniform' behaves like 'quniform' except that it will first change the range to [log(low), log(high)]
Type 'qloguniform' behaves like 'quniform' except that it will first change the range to [log(low), log(high)]
and sample and then change the sampled value back.
and sample and then change the sampled value back.
...
@@ -95,19 +94,16 @@ class GridSearchTuner(Tuner):
...
@@ -95,19 +94,16 @@ class GridSearchTuner(Tuner):
def_parse_quniform(self,param_value):
def_parse_quniform(self,param_value):
'''parse type of quniform parameter and return a list'''
'''parse type of quniform parameter and return a list'''