cellmap/fly_organelles_run08_438000
Updated
Demonstrate the power of FIB-SEM data to catalyze biological discoveries.
The CellMap project team at HHMI Janelia Research Campus develops machine learning models for segmentation of cellular structures in volume electron microscopy (vEM) data.
We provide pre-trained deep learning models for 3D organelle segmentation, available in multiple formats:
| Format | Extension | Use Case |
|---|---|---|
| PyTorch | .pt |
Full model for Python workflows |
| TorchScript | .ts |
Deployment without Python dependencies |
| ONNX | .onnx |
Cross-framework inference |
pip install cellmap-models
from cellmap_models.model_export.cellmap_model import CellmapModel
from huggingface_hub import snapshot_download
# Download and load any model
path = snapshot_download(repo_id="cellmap/your-model-name")
model = CellmapModel(path)
# Inference
output = model.ts_model(input_tensor)
# Finetuning
trainable_model = model.train()
For questions or collaborations, visit our GitHub or reach out through the Janelia CellMap project page.