Views
No views yet
convnext_tiny backbone at 384x384 resolution, with 4-channel input and a 4-threshold ordinal head. The _ema.safetensors file is the primary artifact: the paper's reported evaluation metrics were generated using the EMA state dict. The unsuffixed .safetensors file is the corresponding raw model_state_dict secondary artifact.| Primary EMA weights | Raw secondary weights | Architecture | Held-out fold | Best QWK | Epoch |
|---|---|---|---|---|---|
lodo_aptos_convnext_tiny_best_ema.safetensors | lodo_aptos_convnext_tiny_best.safetensors | convnext_tiny | varies | 0.7716 | 5 |
lodo_ddr_convnext_tiny_best_ema.safetensors | lodo_ddr_convnext_tiny_best.safetensors | convnext_tiny | varies | 0.7775 | 7 |
lodo_eyepacs_convnext_tiny_best_ema.safetensors | lodo_eyepacs_convnext_tiny_best.safetensors | convnext_tiny | varies | 0.7950 | 9 |
lodo_messidor2_convnext_tiny_best_ema.safetensors | lodo_messidor2_convnext_tiny_best.safetensors | convnext_tiny | varies | 0.7415 | 5 |
segmentation_pooled_soft.gradeeye/seg-unet-bcedice.(4, 384, 384) in channel-first layout.1import json
2from modeling import load_model
3
4config = json.load(open('config.json'))
5model = load_model('lodo_eyepacs_convnext_tiny_best_ema.safetensors', config)
6# model(x) returns CORN logits with shape (batch, 4)torch, timm, and safetensors, and make the GradeEye source repository available on PYTHONPATH.