Views
No views yet
UNetVessel with an EfficientNet-B4 encoder, trained at 384x384 using BCE+Dice loss on ddr+idrid. The model outputs one logit channel; apply sigmoid to obtain a continuous probability map.| File | Encoder | Image size | Loss | Best validation Dice | Best epoch |
|---|---|---|---|---|---|
best.safetensors | efficientnet_b4 | 384 | bce_dice | 0.2519 | 22 |
(batch, 1, 384, 384) logits; apply torch.sigmoid for probabilities.1import json
2import torch
3from modeling import load_model
4
5config = json.load(open('config.json'))
6model = load_model('best.safetensors', config)
7with torch.no_grad():
8 probability = torch.sigmoid(model(rgb_tensor))torch, timm, and safetensors, and make the GradeEye source repository available on PYTHONPATH.