Skip to content

Commit 0eb88c6

Browse files
committed
Fix progbar counter.
1 parent 0f33dbc commit 0eb88c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Pilot1/P1B3/p1b3_baseline_keras2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def on_epoch_end(self, batch, logs={}):
137137

138138
class MyProgbarLogger(ProgbarLogger):
139139
def __init__(self, samples):
140-
super(MyProgbarLogger, self).__init__(count_mode='samples')
140+
super(MyProgbarLogger, self).__init__(count_mode='steps')
141141
self.samples = samples
142142
self.params = {}
143143

0 commit comments

Comments
 (0)