Commit e3dc24a3 authored by suiguoxin's avatar suiguoxin
Browse files

update comments

parent d2488810
...@@ -46,7 +46,7 @@ class GridSearchTuner(Tuner): ...@@ -46,7 +46,7 @@ class GridSearchTuner(Tuner):
Type 'quniform' will receive three values [low, high, q], where [low, high] specifies a range and 'q' specifies the interval Type 'quniform' will receive three values [low, high, q], where [low, high] specifies a range and 'q' specifies the interval
It will be sampled in a way that the first sampled value is 'low', and each of the following values is 'interval' larger than 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 'interval' larger than the value in front of it.
Type 'randint' gives all possible intergers in range(low, high). Note that 'high' is not included. Type 'randint' gives all possible intergers in range[low, high). Note that 'high' is not included.
''' '''
def __init__(self): def __init__(self):
......
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