From eede5bf37ede84b79c99e0f340ac67694f54c43a Mon Sep 17 00:00:00 2001 From: Jamjamjon <51357717+jamjamjon@users.noreply.github.com> Date: Fri, 9 May 2025 16:36:25 +0800 Subject: [PATCH] Add RF-DETR large model --- src/models/rfdetr/config.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/models/rfdetr/config.rs b/src/models/rfdetr/config.rs index 8dd1624..6edccd0 100644 --- a/src/models/rfdetr/config.rs +++ b/src/models/rfdetr/config.rs @@ -19,4 +19,8 @@ impl crate::Options { pub fn rfdetr_base() -> Self { Self::rfdetr().with_model_file("base.onnx") } + + pub fn rfdetr_large() -> Self { + Self::rfdetr().with_model_file("large.onnx") + } }