Xenova HF staff commited on
Commit
e173b22
·
verified ·
1 Parent(s): b706cad

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.54, 378.72, 640.04, 478.45] with score 0.93.
49
- Found "car" at [179.04, 339.41, 398.66, 416.86] with score 0.90.
50
- Found "bicycle" at [2.13, 518.43, 110.29, 584.21] with score 0.88.
51
- Found "bicycle" at [352.12, 521.97, 464.05, 588.28] with score 0.85.
52
- Found "person" at [550.97, 258.75, 591.22, 332.01] with score 0.85.
53
- Found "bicycle" at [449.07, 473.14, 556.22, 537.92] with score 0.83.
54
- Found "person" at [31.36, 469.01, 79.16, 572.99] with score 0.82.
55
- Found "person" at [473.11, 430.45, 533.71, 527.05] with score 0.79.
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.54, 378.72, 640.04, 478.45] with score 0.93.
49
+ // Found "car" at [179.04, 339.41, 398.66, 416.86] with score 0.90.
50
+ // Found "bicycle" at [2.13, 518.43, 110.29, 584.21] with score 0.88.
51
+ // Found "bicycle" at [352.12, 521.97, 464.05, 588.28] with score 0.85.
52
+ // Found "person" at [550.97, 258.75, 591.22, 332.01] with score 0.85.
53
+ // Found "bicycle" at [449.07, 473.14, 556.22, 537.92] with score 0.83.
54
+ // Found "person" at [31.36, 469.01, 79.16, 572.99] with score 0.82.
55
+ // Found "person" at [473.11, 430.45, 533.71, 527.05] with score 0.79.
56
  // ...
57
  ```