CondensateNet
Collection
Segments biomolecular condensates • 1 item • Updated
Semantic segmentation model for detecting biomolecular condensates (puncta / stress granules) in fluorescence microscopy images.
| Metric | Value |
|---|---|
| Dice | 0.5164 |
| F1 | 0.5164 |
| IoU | 0.3505 |
| Metric | Mean | Std |
|---|---|---|
| Dice | 0.534 | 0.155 |
| Precision | 0.517 | 0.151 |
| Recall | 0.588 | 0.203 |
from condensatenet import CondensateNetPipeline
# Load from HuggingFace
pipeline = CondensateNetPipeline.from_pretrained("rajlab/condensatenet-v1")
# Segment an image
instances = pipeline.segment(image)
print(f"Found {instances.max()} condensates")
# Or load from a local download
pipeline = CondensateNetPipeline.from_local("/path/to/model")
Research tool for detecting biomolecular condensates in fluorescence microscopy. Not intended for clinical or diagnostic use.
This model was iteratively improved over 5 training runs:
| Run | Changes | Val Dice |
|---|---|---|
| 1 | Baseline | 0.503 |
| 2 | +contrast augmentation | 0.480 |
| 3 | +calibration loss | 0.509 |
| 4 | +warmup/cosine/early stop (80 ep) | 0.495 |
| 4b | Same, 120 epochs | 0.516 |
Full training logs are available in the GitHub repository.