[tune] Rename 'repeat' to 'num_samples' (#2698)

Deprecates the `repeat` argument and introduces `num_samples`. Also updates docs accordingly.
This commit is contained in:
Michael Tu
2018-08-24 15:05:24 -07:00
committed by Richard Liaw
parent bcab5bcd02
commit d16b6f6a32
19 changed files with 41 additions and 28 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ if __name__ == '__main__':
config = {
"my_exp": {
"run": "exp",
"repeat": 10 if args.smoke_test else 1000,
"num_samples": 10 if args.smoke_test else 1000,
"stop": {
"training_iteration": 100
},