Update README.md

This commit is contained in:
Niels Rogge 2022-08-05 13:36:40 +00:00 committed by huggingface-web
parent 8c174de1db
commit c783425425
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ for score, label, box in zip(results["scores"], results["labels"], results["boxe
if score > 0.9:
print(
f"Detected {model.config.id2label[label.item()]} with confidence "
f"{round(score.item(), 3)} at location {box}."
f"{round(score.item(), 3)} at location {box}"
)
```
This should output: