Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion roboflow/util/model_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def _process_yolo(model_type: str, model_path: str, filename: str) -> str:


def _process_rfdetr(model_type: str, model_path: str, filename: str) -> str:
_supported_types = ["rfdetr-base", "rfdetr-large"]
_supported_types = ["rfdetr-base", "rfdetr-large", "rfdetr-nano", "rfdetr-small", "rfdetr-medium"]
if model_type not in _supported_types:
raise ValueError(f"Model type {model_type} not supported. Supported types are {_supported_types}")

Expand Down