Drazcat-AI commited on
Commit
cfab5c3
·
verified ·
1 Parent(s): bb438e9

Update handler.py

Browse files
Files changed (1) hide show
  1. handler.py +7 -8
handler.py CHANGED
@@ -15,15 +15,14 @@ class EndpointHandler():
15
  class_id = results[0].names[box.cls[0].item()]
16
  cords = box.xywh[0].tolist()
17
  cords = [round(x) for x in cords]
18
- conf = round(box.conf[0].item(), 2)
19
  prediction = {
20
- "label": class_id,
21
- "score": conf,
22
- "box":{
23
- "x": cords[0],
24
- "y": cords[1],
25
- "width": cords[2],
26
- "height": cords[3]}
27
  }
28
  predictions.append(prediction)
29
  predictions_array = {"predictions": predictions}
 
15
  class_id = results[0].names[box.cls[0].item()]
16
  cords = box.xywh[0].tolist()
17
  cords = [round(x) for x in cords]
18
+ conf = box.conf[0].item()
19
  prediction = {
20
+ "x": round(cords[0]),
21
+ "y": round(cords[1]),
22
+ "width": round(cords[2]),
23
+ "height": round(cords[3]),
24
+ "confidence": conf,
25
+ "class": class_id
 
26
  }
27
  predictions.append(prediction)
28
  predictions_array = {"predictions": predictions}