Fixed attribute name in code example (#2054)

hyperparam_mutations
This commit is contained in:
Ken Fehling
2018-05-14 01:05:06 -07:00
committed by Eric Liang
parent 52b0f3734a
commit 19b743c84b
+1 -1
View File
@@ -17,7 +17,7 @@ Ray Tune's PBT scheduler can be plugged in on top of an existing grid or random
time_attr='time_total_s',
reward_attr='mean_accuracy',
perturbation_interval=600.0,
hyperparameter_mutations={
hyperparam_mutations={
"lr": [1e-3, 5e-4, 1e-4, 5e-5, 1e-5],
"alpha": lambda: random.uniform(0.0, 1.0),
...