Views
No views yet
0: worm1: worm-under[e.g. yolo11n]640[200 / 137]best.pt[0.5741]data.yamlbest.pt — best checkpoint (recommended for inference)[optional: last.pt] — last epoch checkpoint[optional: results.csv] — training metrics[optional: args.yaml] — training args.npy (8 channels)1from ultralytics import YOLO
2
3model = YOLO("best.pt")
4# NOTE: Default model.predict(...) assumes standard image input.
5# For this model, use your custom 8-channel preprocessing/inference pipeline.