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 src/rfdetr/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ class TrainConfig(BaseModel):
clearml: bool = False # Not yet implemented — reserved for future use.
project: Optional[str] = None
run: Optional[str] = None
class_names: List[str] = None
class_names: Optional[List[str]] = None
run_test: bool = False
segmentation_head: bool = False
eval_max_dets: int = 500
Expand Down
Loading