[tune] Modify stop criteria in hyperopt example (#3102)

Modify `training_iteraion` to `timesteps_total` because only `timesteps_total` is inside the reporter.
This commit is contained in:
Dennis Chung
2018-10-31 04:26:40 +08:00
committed by Richard Liaw
parent aacbd007a0
commit 9df2e6e6f4
+1 -1
View File
@@ -48,7 +48,7 @@ if __name__ == '__main__':
"run": "exp",
"num_samples": 10 if args.smoke_test else 1000,
"stop": {
"training_iteration": 100
"timesteps_total": 100
},
}
}