mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
[docs/tune] Fix loguniform range in tune tutorial (#28131)
This commit is contained in:
parent
00f6273775
commit
67a7481972
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ from hyperopt import hp
|
|||
from ray.tune.search.hyperopt import HyperOptSearch
|
||||
|
||||
space = {
|
||||
"lr": hp.loguniform("lr", 1e-10, 0.1),
|
||||
"lr": hp.loguniform("lr", -10, -1),
|
||||
"momentum": hp.uniform("momentum", 0.1, 0.9),
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue