mziarehman4353/cell-segmentation-bbbc038
0
๐งฌ Cell Segmentation & Classification (BBBC038)
This model performs:
- ๐น Cell segmentation using DeepLabV3+
- ๐น Cell classification (small vs large cells)
๐ Results
- Dice Score: 0.85
- IoU Score: 0.74
- Classification Accuracy: 91%
๐ง Model
- Backbone: ResNet34
- Architecture: DeepLabV3+
๐ Usage
import torch
import segmentation_models_pytorch as smp
model = smp.DeepLabV3Plus(
encoder_name="resnet34",
encoder_weights=None,
classes=1
)
model.load_state_dict(torch.load("deeplabv3plus.pth"))
model.eval()
๐ Dataset
BBBC038 (Broad Bioimage Benchmark Collection)
๐จโ๐ป Author
Zia Ul Rehman Zafar
