SalML commited on
Commit
bd077dd
·
1 Parent(s): 086b162

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -433,10 +433,10 @@ class TableExtractionPipeline():
433
  '''
434
  image = Image.open(image_path).convert("RGB")
435
  model, probas, bboxes_scaled = table_detector(image, THRESHOLD_PROBA=TD_THRESHOLD)
436
-
437
- if bboxes_scaled.nelement() == 0:
438
- st.write('No table found in the pdf-page image')
439
- return ''
440
 
441
  # try:
442
  # st.write('Document: '+image_path.split('/')[-1])
 
433
  '''
434
  image = Image.open(image_path).convert("RGB")
435
  model, probas, bboxes_scaled = table_detector(image, THRESHOLD_PROBA=TD_THRESHOLD)
436
+ st.write(bboxes_scaled)
437
+ #if bboxes_scaled.nelement() == 0:
438
+ #st.write('No table found in the pdf-page image')
439
+ #return ''
440
 
441
  # try:
442
  # st.write('Document: '+image_path.split('/')[-1])