acverma commited on
Commit
269503c
·
1 Parent(s): 0e7bf2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -148,11 +148,11 @@ def process_image(image):
148
  draw = ImageDraw.Draw(image)
149
  font = ImageFont.load_default()
150
 
151
- def iob_to_label(label):
152
- label = label[2:]
153
- if not label:
154
  return 'other'
155
- return label
156
 
157
  label2color = {'question':'blue', 'answer':'green', 'header':'orange', 'other':'violet'}
158
  for prediction, box in zip(true_predictions, true_boxes):
 
148
  draw = ImageDraw.Draw(image)
149
  font = ImageFont.load_default()
150
 
151
+ def iob_to_label(labels):
152
+ labels= labels[2:]
153
+ if not labels:
154
  return 'other'
155
+ return labels
156
 
157
  label2color = {'question':'blue', 'answer':'green', 'header':'orange', 'other':'violet'}
158
  for prediction, box in zip(true_predictions, true_boxes):