Skip to content

Commit 5dfe727

Browse files
authored
Merge pull request #350 from mikegerber/fix-noise-model-summary-print
calamari/1.0: Remove noisy/useless print around model.summary() call
2 parents db835c0 + 9b430de commit 5dfe727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

calamari_ocr/ocr/backends/tensorflow_backend/tensorflow_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def __init__(
9393
else:
9494
self.model = self.create_predictor()
9595

96-
print(self.model.summary())
96+
self.model.summary()
9797

9898
def create_predictor(self):
9999
return Model(

0 commit comments

Comments
 (0)