Update README.md
Browse files
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 [177.70, 336.97, 398.84, 417.47] with score 0.97.
|
49 |
-
Found "car" at [447.32, 378.86, 639.43, 478.14] with score 0.97.
|
50 |
-
Found "person" at [473.79, 430.18, 533.20, 532.84] with score 0.95.
|
51 |
-
Found "bicycle" at [352.02, 526.71, 463.56, 588.08] with score 0.93.
|
52 |
-
Found "bicycle" at [1.32, 517.64, 109.91, 584.40] with score 0.92.
|
53 |
-
Found "bicycle" at [449.09, 478.36, 555.36, 537.83] with score 0.91.
|
54 |
-
Found "person" at [550.20, 261.00, 591.49, 332.14] with score 0.90.
|
55 |
-
Found "person" at [392.72, 481.26, 442.78, 586.88] 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 [177.70, 336.97, 398.84, 417.47] with score 0.97.
|
49 |
+
// Found "car" at [447.32, 378.86, 639.43, 478.14] with score 0.97.
|
50 |
+
// Found "person" at [473.79, 430.18, 533.20, 532.84] with score 0.95.
|
51 |
+
// Found "bicycle" at [352.02, 526.71, 463.56, 588.08] with score 0.93.
|
52 |
+
// Found "bicycle" at [1.32, 517.64, 109.91, 584.40] with score 0.92.
|
53 |
+
// Found "bicycle" at [449.09, 478.36, 555.36, 537.83] with score 0.91.
|
54 |
+
// Found "person" at [550.20, 261.00, 591.49, 332.14] with score 0.90.
|
55 |
+
// Found "person" at [392.72, 481.26, 442.78, 586.88] with score 0.89.
|
56 |
// ...
|
57 |
```
|