pratikshahp commited on
Commit
0a0334e
·
verified ·
1 Parent(s): ad50413

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -13
app.py CHANGED
@@ -13,12 +13,12 @@ import requests
13
  # location = [round(value, 2) for value in item['box'].values()]
14
  # print(f'Detected {label} with confidence {score} at location {location}')
15
 
16
- def prettify_results(results):
17
- for item in results:
18
- score = round(item['score'].item(), 3)
19
- label = model.config.id2label[item['label']] # Get label from id2label mapping in model config
20
- box = [round(coord, 2) for coord in item['box']]
21
- st.write(f'Detected {label} with confidence {score} at location {box}')
22
  # Function to process uploaded image and prepare input for model
23
 
24
  def input_image_setup(uploaded_file):
@@ -58,10 +58,10 @@ if submit:
58
  # print results
59
  target_sizes = torch.tensor([image.size[::-1]])
60
  results = processor.post_process_object_detection(outputs, threshold=0.9, target_sizes=target_sizes)[0]
61
- prettify_results(results)
62
- #for score, label, box in zip(results["scores"], results["labels"], results["boxes"]):
63
- # box = [round(i, 2) for i in box.tolist()]
64
- # print(
65
- # f"Detected {model.config.id2label[label.item()]} with confidence "
66
- # f"{round(score.item(), 3)} at location {box}"
67
- # )
 
13
  # location = [round(value, 2) for value in item['box'].values()]
14
  # print(f'Detected {label} with confidence {score} at location {location}')
15
 
16
+ #def prettify_results(results):
17
+ # for item in results:
18
+ # score = round(item['score'].item(), 3)
19
+ # label = model.config.id2label[item['label']] # Get label from id2label mapping in model config
20
+ # box = [round(coord, 2) for coord in item['box']]
21
+ # st.write(f'Detected {label} with confidence {score} at location {box}')
22
  # Function to process uploaded image and prepare input for model
23
 
24
  def input_image_setup(uploaded_file):
 
58
  # print results
59
  target_sizes = torch.tensor([image.size[::-1]])
60
  results = processor.post_process_object_detection(outputs, threshold=0.9, target_sizes=target_sizes)[0]
61
+ # prettify_results(results)
62
+ for score, label, box in zip(results["scores"], results["labels"], results["boxes"]):
63
+ box = [round(i, 2) for i in box.tolist()]
64
+ st.write(
65
+ f"Detected {model.config.id2label[label.item()]} with confidence "
66
+ f"{round(score.item(), 3)} at location {box}"
67
+ )