[tune] Make examples more verbose (#4469)

## What do these changes do?
Verbosity defaults to "1", so here we default verbosity for a couple
examples.

## Related issue number

Fixes #4467
This commit is contained in:
Richard Liaw
2019-03-25 15:13:17 -07:00
committed by GitHub
parent 5b8eb475ce
commit a275af337e
3 changed files with 0 additions and 3 deletions
@@ -171,7 +171,6 @@ if __name__ == "__main__":
tune.run(
"TRAIN_FN",
name="exp",
verbose=0,
scheduler=sched,
**{
"stop": {
@@ -179,7 +179,6 @@ if __name__ == "__main__":
time_attr="training_iteration", reward_attr="neg_mean_loss")
tune.run(
TrainMNIST,
verbose=0,
scheduler=sched,
**{
"stop": {
@@ -183,7 +183,6 @@ if __name__ == "__main__":
tune.run(
"TRAIN_FN",
name="exp",
verbose=0,
scheduler=sched,
**{
"stop": {