Added missing comma to code example (#2050)

This commit is contained in:
Ken Fehling 2018-05-13 22:01:01 -04:00 committed by Robert Nishihara
parent 18071d95a7
commit 4ff900e131

View file

@ -26,7 +26,7 @@ Quick Start
tune.run_experiments({
"my_experiment": {
"run": "train_func",
"stop": {"mean_accuracy": 99}
"stop": {"mean_accuracy": 99},
"config": {
"lr": tune.grid_search([0.2, 0.4, 0.6]),
"momentum": tune.grid_search([0.1, 0.2]),