Update ort

This commit is contained in:
jamjamjon
2024-07-14 10:59:44 +08:00
parent edc3a8897c
commit 56aed9e50c
2 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ fn main() -> Result<()> {
},
YOLOVersion::V10 => match args.task {
YOLOTask::Detect => {
options.with_model(&args.model.unwrap_or("yolov10n-dyn.onnx".to_string()))?
options.with_model(&args.model.unwrap_or("yolov10n.onnx".to_string()))?
}
t => anyhow::bail!("Task: {t:?} is unsupported for {:?}", args.version),
},