From c783425425d573f30483efb0660bf6207deea991 Mon Sep 17 00:00:00 2001 From: Niels Rogge Date: Fri, 5 Aug 2022 13:36:40 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ccfbc0f..d257515 100644 --- a/README.md +++ b/README.md @@ -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: