Spaces:
Sleeping
Sleeping
Jiang Xiaolan
commited on
Commit
·
919f8f8
1
Parent(s):
9cc8bea
update json prediction
Browse files
app.py
CHANGED
@@ -138,10 +138,9 @@ if clone_repo():
|
|
138 |
with st.spinner('現在ファイルを解析中です'):
|
139 |
# Simulate model running time
|
140 |
# time.sleep(5) # Replace this with actual model running code
|
141 |
-
predictions = ia.get_ocr_predictions(pil_image, models)
|
142 |
-
|
143 |
-
|
144 |
-
json_predictions = ia.get_json_result(predictions)
|
145 |
st.session_state.json_predictions = json_predictions
|
146 |
|
147 |
# Convert JSON to Excel
|
|
|
138 |
with st.spinner('現在ファイルを解析中です'):
|
139 |
# Simulate model running time
|
140 |
# time.sleep(5) # Replace this with actual model running code
|
141 |
+
# predictions = ia.get_ocr_predictions(pil_image, models)
|
142 |
+
# json_predictions = ia.get_json_result(predictions)
|
143 |
+
json_predictions = ia.get_json_result_v2(pil_image, models)
|
|
|
144 |
st.session_state.json_predictions = json_predictions
|
145 |
|
146 |
# Convert JSON to Excel
|