mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
Fix overlooked typo. (#1158)
Without this the example script would crash with an UnboundLocalError.
This commit is contained in:
parent
cd9dc398ff
commit
6da7761d5d
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ if __name__ == "__main__":
|
||||||
validation_labels = ray.put(mnist.validation.labels)
|
validation_labels = ray.put(mnist.validation.labels)
|
||||||
|
|
||||||
# Keep track of the best hyperparameters and the best accuracy.
|
# Keep track of the best hyperparameters and the best accuracy.
|
||||||
best_hyperparamemeters = None
|
best_hyperparameters = None
|
||||||
best_accuracy = 0
|
best_accuracy = 0
|
||||||
# This list holds the object IDs for all of the experiments that we have
|
# This list holds the object IDs for all of the experiments that we have
|
||||||
# launched and that have not yet been processed.
|
# launched and that have not yet been processed.
|
||||||
|
|
Loading…
Add table
Reference in a new issue