Views
No views yet
| File | Model | Framework | Task | Score |
|---|---|---|---|---|
IS-3_mask_rcnn_r50.pth | Mask R-CNN R50-FPN | Detectron2 | Leaf instance segmentation | 73.2 mAP |
CL-6_swin_t.pth | Swin-T | timm | Growth-stage classification | 91.7 % acc |
IS-1_yolov11_seg.pt | YOLOv11-seg | Ultralytics | Segmentation + tracking detector | 68.2 mAP |
1from phenoleaf_ts.models import load_model # see the GitHub repo
2seg = load_model("IS-3", checkpoint="IS-3_mask_rcnn_r50.pth")
3clf = load_model("CL-6", checkpoint="CL-6_swin_t.pth")
4
5# or pull a file directly
6from huggingface_hub import hf_hub_download
7ckpt = hf_hub_download("basimazam/PhenoLeaf-TS-models", "IS-1_yolov11_seg.pt")1@InProceedings{saric2026phenoleafts,
2 author = {Sari\'c, Rijad and Azam, Basim and Khan, Sarmad and \v{C}ustovi\'c, Edhem},
3 title = {{PhenoLeaf-TS}: A Time-Series Benchmark for Leaf Instance Segmentation, Tracking, and Growth Stage Classification},
4 booktitle = {Computer Vision -- ECCV 2026},
5 year = {2026},
6 publisher = {Springer Nature Switzerland},
7}