ARG-NCTU/Split_Port_Ship_Classification_Dataset_coco
Viewer • Updated • 17.1k • 160
How to use ARG-NCTU/rtdetr-spscd_buoy_joint_1280_b8_e100 with ultralytics:
# Couldn't find a valid YOLO version tag.
# Replace XX with the correct version.
from ultralytics import YOLOvXX
model = YOLOvXX.from_pretrained("ARG-NCTU/rtdetr-spscd_buoy_joint_1280_b8_e100")
source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
model.predict(source=source, save=True)best.pt - Best model checkpointresults.csv - Complete training metricsresults.png - Training curves visualizationconfusion_matrix.png - Confusion matrixF1_curve.png, PR_curve.png - Performance curvessamples/ - Sample validation predictionsNote: TensorBoard logs are included if available. You can also visualize training using results.csv and the curve images.
from ultralytics import RTDETR
# Load model
model = RTDETR('best.pt')
# Run inference
results = model('your_image.jpg')
results.pngresults.csv for detailed epoch-by-epoch metrics