Spaces:
Running
Running
pelinbalci
commited on
Commit
•
c57e88a
1
Parent(s):
5ba3d58
Update app.py
Browse filesAdd printed text
app.py
CHANGED
@@ -44,6 +44,11 @@ if file is not None:
|
|
44 |
# latest_iteration.text(f'Iteration {i+1}')
|
45 |
# bar.progress(i + 1)
|
46 |
# time.sleep(0.1)
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
# collect the results in the dictionary:
|
49 |
textdic_easyocr = {}
|
|
|
44 |
# latest_iteration.text(f'Iteration {i+1}')
|
45 |
# bar.progress(i + 1)
|
46 |
# time.sleep(0.1)
|
47 |
+
|
48 |
+
# print all predicted text:
|
49 |
+
for idx in range(len(result)):
|
50 |
+
pred_text = result[idx][1]
|
51 |
+
print(pred_text)
|
52 |
|
53 |
# collect the results in the dictionary:
|
54 |
textdic_easyocr = {}
|