Jiang Xiaolan commited on
Commit
919f8f8
·
1 Parent(s): 9cc8bea

update json prediction

Browse files
Files changed (1) hide show
  1. app.py +3 -4
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
- # Simulate OCR result as a JSON object
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