Xenova HF Staff commited on
Commit
82bfa1f
·
verified ·
1 Parent(s): abaf785

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -8
README.md CHANGED
@@ -45,13 +45,13 @@ for (const [xmin, ymin, xmax, ymax, score, id] of predictions) {
45
  const bbox = [xmin, ymin, xmax, ymax].map(x => x.toFixed(2)).join(', ')
46
  console.log(`Found "${model.config.id2label[id]}" at [${bbox}] with score ${score.toFixed(2)}.`)
47
  }
48
- Found "car" at [447.84, 378.56, 639.25, 478.67] with score 0.94.
49
- Found "car" at [176.77, 336.73, 398.79, 418.09] with score 0.94.
50
- Found "bicycle" at [351.96, 526.97, 463.51, 588.49] with score 0.93.
51
- Found "bicycle" at [449.39, 477.36, 555.63, 538.10] with score 0.91.
52
- Found "person" at [474.16, 429.78, 534.73, 534.29] with score 0.91.
53
- Found "bicycle" at [1.51, 517.97, 110.14, 584.14] with score 0.90.
54
- Found "person" at [31.05, 469.64, 79.11, 567.90] with score 0.90.
55
- Found "person" at [394.04, 479.20, 442.46, 587.36] with score 0.89.
56
  // ...
57
  ```
 
45
  const bbox = [xmin, ymin, xmax, ymax].map(x => x.toFixed(2)).join(', ')
46
  console.log(`Found "${model.config.id2label[id]}" at [${bbox}] with score ${score.toFixed(2)}.`)
47
  }
48
+ // Found "car" at [447.84, 378.56, 639.25, 478.67] with score 0.94.
49
+ // Found "car" at [176.77, 336.73, 398.79, 418.09] with score 0.94.
50
+ // Found "bicycle" at [351.96, 526.97, 463.51, 588.49] with score 0.93.
51
+ // Found "bicycle" at [449.39, 477.36, 555.63, 538.10] with score 0.91.
52
+ // Found "person" at [474.16, 429.78, 534.73, 534.29] with score 0.91.
53
+ // Found "bicycle" at [1.51, 517.97, 110.14, 584.14] with score 0.90.
54
+ // Found "person" at [31.05, 469.64, 79.11, 567.90] with score 0.90.
55
+ // Found "person" at [394.04, 479.20, 442.46, 587.36] with score 0.89.
56
  // ...
57
  ```