Update README.md
Browse files
README.md
CHANGED
|
@@ -35,7 +35,7 @@ from ultralytics import YOLO
|
|
| 35 |
model = YOLO("comic-panels-and-text-detect.pt")
|
| 36 |
|
| 37 |
# Predict with optimal manga settings
|
| 38 |
-
results = model.predict("
|
| 39 |
results[0].show()
|
| 40 |
|
| 41 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 35 |
model = YOLO("comic-panels-and-text-detect.pt")
|
| 36 |
|
| 37 |
# Predict with optimal manga settings
|
| 38 |
+
results = model.predict("comic_page.jpg", imgsz=1280, conf=0.25)
|
| 39 |
results[0].show()
|
| 40 |
|
| 41 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|