@@ -27,7 +27,6 @@ def test_early_stopping_cpu_model(tmpdir):
27
27
overfit_pct = 0.20 ,
28
28
track_grad_norm = 2 ,
29
29
print_nan_grads = True ,
30
- show_progress_bar = True ,
31
30
logger = tutils .get_test_tube_logger (tmpdir ),
32
31
train_percent_check = 0.1 ,
33
32
val_percent_check = 0.1 ,
@@ -49,7 +48,7 @@ def test_lbfgs_cpu_model(tmpdir):
49
48
default_save_path = tmpdir ,
50
49
max_epochs = 2 ,
51
50
print_nan_grads = True ,
52
- show_progress_bar = False ,
51
+ progress_bar_refresh_rate = 0 ,
53
52
weights_summary = 'top' ,
54
53
train_percent_check = 1.0 ,
55
54
val_percent_check = 0.2 ,
@@ -69,7 +68,7 @@ def test_default_logger_callbacks_cpu_model(tmpdir):
69
68
gradient_clip_val = 1.0 ,
70
69
overfit_pct = 0.20 ,
71
70
print_nan_grads = True ,
72
- show_progress_bar = False ,
71
+ progress_bar_refresh_rate = 0 ,
73
72
train_percent_check = 0.01 ,
74
73
val_percent_check = 0.01 ,
75
74
)
@@ -97,7 +96,7 @@ def test_running_test_after_fitting(tmpdir):
97
96
98
97
trainer_options = dict (
99
98
default_save_path = tmpdir ,
100
- show_progress_bar = False ,
99
+ progress_bar_refresh_rate = 0 ,
101
100
max_epochs = 4 ,
102
101
train_percent_check = 0.4 ,
103
102
val_percent_check = 0.2 ,
@@ -135,7 +134,7 @@ class CurrentTestModel(LightTrainDataloader, LightTestMixin, TestModelBase):
135
134
checkpoint = tutils .init_checkpoint_callback (logger )
136
135
137
136
trainer_options = dict (
138
- show_progress_bar = False ,
137
+ progress_bar_refresh_rate = 0 ,
139
138
max_epochs = 1 ,
140
139
train_percent_check = 0.4 ,
141
140
val_percent_check = 0.2 ,
@@ -230,7 +229,7 @@ def test_cpu_model(tmpdir):
230
229
231
230
trainer_options = dict (
232
231
default_save_path = tmpdir ,
233
- show_progress_bar = False ,
232
+ progress_bar_refresh_rate = 0 ,
234
233
logger = tutils .get_test_tube_logger (tmpdir ),
235
234
max_epochs = 1 ,
236
235
train_percent_check = 0.4 ,
@@ -252,7 +251,7 @@ def test_all_features_cpu_model(tmpdir):
252
251
overfit_pct = 0.20 ,
253
252
track_grad_norm = 2 ,
254
253
print_nan_grads = True ,
255
- show_progress_bar = False ,
254
+ progress_bar_refresh_rate = 0 ,
256
255
logger = tutils .get_test_tube_logger (tmpdir ),
257
256
accumulate_grad_batches = 2 ,
258
257
max_epochs = 1 ,
@@ -349,7 +348,7 @@ def test_single_gpu_model(tmpdir):
349
348
350
349
trainer_options = dict (
351
350
default_save_path = tmpdir ,
352
- show_progress_bar = False ,
351
+ progress_bar_refresh_rate = 0 ,
353
352
max_epochs = 1 ,
354
353
train_percent_check = 0.1 ,
355
354
val_percent_check = 0.1 ,
0 commit comments