[docs/tune] Fix loguniform range in tune tutorial (#28131)

This commit is contained in:
Kilian Lieret 2022-08-26 20:08:00 -04:00 committed by GitHub
parent 00f6273775
commit 67a7481972
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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),
}