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.7539 | 4 |
lodo_ddr_convnext_tiny_best_ema.safetensors | lodo_ddr_convnext_tiny_best.safetensors | convnext_tiny | varies | 0.7433 | 7 |
lodo_eyepacs_convnext_tiny_best_ema.safetensors | lodo_eyepacs_convnext_tiny_best.safetensors | convnext_tiny | varies | 0.7808 | 3 |
lodo_messidor2_convnext_tiny_best_ema.safetensors | lodo_messidor2_convnext_tiny_best.safetensors | convnext_tiny | varies | 0.7307 | 7 |
segmentation_pooled_tversky.gradeeye/seg-unet-tversky.(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.