anonymous-submission-dataset-code/TiBuDB_trained_weights
0
Model Weights
The trained weights for all benchmarks are hosted on Hugging Face.
Weights Organization
Download the weights and place them in the TiBuDB_trained_weights/ directory.
Note: RF-DETR processes images at the native crop size (128) without upscaling; inference size is not applicable.
Quick Load Example
Ultralytics (YOLO / RT-DETR)
from ultralytics import YOLO
model = YOLO("TiBuDB_trained_weights/best_det_yolo26x_seed1000_baseline.pt")
results = model.predict("path/to/image.png")RF-DETR
from rfdetr import RFDETRLarge
model = RFDETRLarge(pretrain_weights="TiBuDB_trained_weights/best_ema_det_rfdetr_large_seed0_baseline.pth")
results = model.predict("path/to/image.png")