Skip to main content

soma

soma is a modular framework to streamline computational pathology research.

The soma pipeline — data, a frozen encoder, a trained decoder, and evaluation.

📖 Documentation · 📦 PyPI

It provides a unified API to go from a dataset of slides and labels to a full, reproducible result report. Along the way, it makes it easy to sweep core design choices such as preprocessing (spacing, field-of-view), encoding (foundation models), and aggregation (MIL) so you can quickly find the strongest configuration for your data.

You can use it either as a full end-to-end pipeline or as a set of composable building blocks for custom experiment orchestration.

Install

pip install soma-pathology

The PyPI distribution is soma-pathology; the import package and CLI remain soma.

API Overview

The package root exports the main entry points:

  • Dataset and Splits for loading data
  • FeatureExtractor for preprocessing slides and extracting embeddings
  • train() and train_one_fold() for training directly from features
  • Pipeline for the full preprocessing + feature extraction + training workflow

Quick Start

1. Prepare dataset and splits

dataset.csv should contain one row per slide with at least sample_id, image_path, and label. sample_id must be unique, image_path should point to the slide file, and label can be either a string class name or an integer target.

splits.csv should assign each sample_id to train, tune, or a test* split for every fold. Each fold must contain at least one test split. This is what keeps evaluation reproducible and prevents leakage.

from soma import Dataset, Splits

dataset = Dataset("dataset.csv")
splits = Splits("splits.csv", dataset)

print(len(dataset.sample_ids))
print(sorted({s.label for s in dataset.samples.values()}))
print(splits.num_folds)

2. Extract once, cache, and reuse features across experiments

FeatureExtractor handles preprocessing and embedding extraction. The cache lets you reuse the same extracted features across multiple training runs, which is especially useful when comparing several MIL aggregators or heads against the same encoder output.

from soma import Dataset, Splits, FeatureExtractor, train
from soma import CacheConfig, EncoderConfig, AggregatorConfig, TaskConfig, TrainingConfig

# Extract features once

dataset = Dataset("dataset.csv")
extractor = FeatureExtractor(
    dataset=dataset,
    encoder=EncoderConfig(name="uni2"),
    output_root="output",
    cache=CacheConfig(enabled=True, root_dir="shared/feature_cache"),
)

store = extractor.extract(feature_dir="output/features/uni2")

# Train multiple model variants on the same features

splits = Splits("splits.csv", dataset)
task = TaskConfig(name="binary_classification")

abmil_result = train(
    feature_store=store,
    dataset=dataset,
    splits=splits,
    aggregator=AggregatorConfig(name="abmil", params={"hidden_dim": 256}),
    task=task,
    training=TrainingConfig(learning_rate=1e-4, epochs=50),
    run_dir="output/abmil/uni2",
)

clam_result = train(
    feature_store=store,
    dataset=dataset,
    splits=splits,
    aggregator=AggregatorConfig(name="clam_sb", params={"hidden_dim": 256, "attn_dim": 128}),
    task=task,
    training=TrainingConfig(learning_rate=1e-4, epochs=50),
    run_dir="output/clam_sb/uni2",
)

3. Run a full pipeline in one call

Pipeline(config).run() handles preprocessing, feature extraction, training across folds, and metric aggregation in a single call.

from soma import Pipeline, PipelineConfig
from soma import EncoderConfig, AggregatorConfig, TaskConfig, TrainingConfig

config = PipelineConfig(
    dataset_csv="dataset.csv",
    splits_csv="splits.csv",
    output_root="output",
    dataset_type="slide",
    encoder=EncoderConfig(name="uni2"),
    aggregator=AggregatorConfig(name="abmil", params={"hidden_dim": 256}),
    task=TaskConfig(name="binary_classification"),
    training=TrainingConfig(learning_rate=1e-4, epochs=50),
)

result = Pipeline(config).run()

The returned PipelineResult includes:

  • fold_results: one entry per fold, each with training, tune, and test reports
  • summary: aggregated metrics across folds
  • run_dir: the resolved run directory containing the saved artifacts

Task-free representation evaluation

Frozen tile embeddings can instead be evaluated directly with the fixed CRoMa v1 protocol. A representation config must explicitly disable the ordinary task default:

data:
  dataset_csv: dataset.csv
  splits_csv: splits.csv
  dataset_type: tile
task: null
representation:
  kind: croma
  confounder_column: medical_center
  split: test
  evaluation_design: all
  m: 5
  alpha: 0.10

Selected dataset rows must contain non-empty label, literal group_id, and the configured confounder column. Representation runs do not fit a head or write a task report. Their provenance records the installed CRoMa version and the ordinary encoder configuration (including output variant). That record is useful for comparison, but an encoder slug, variant, dimension, package version, and ordinary run metadata do not by themselves prove byte-identical weights or preprocessing; Soma does not add checkpoint hashing or a separate upstream fingerprint for this protocol.

CLI

soma ships a command-line interface that runs a full pipeline from a YAML config file:

soma /path/to/config.yaml
python -m soma /path/to/config.yaml

The YAML layout is grouped by concern: run, data, preprocessing, encoder, aggregation, task, evaluation, training, execution, cache, and reports. soma merges your file on top of the bundled soma/configs/default.yaml, so you usually only need to edit the blocks you want to change.

You can also inspect the available presets directly from the terminal:

soma list encoders --level tile
soma list aggregators
soma list decoders
soma list pixel-classifiers
soma list tasks

examples/ contains a reference.yaml documenting every available field, and focused per-task starting points (slide_binary_classification.yaml, slide_ordinal_classification.yaml, slide_regression.yaml, tile_classification.yaml).

Docs

Full documentation is hosted at https://clemsgrs.github.io/soma.

License

This repository is available under AGPL-3.0.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

soma_pathology-1.11.0.tar.gz (455.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

soma_pathology-1.11.0-py3-none-any.whl (544.4 kB view details)

Uploaded Python 3

File details

Details for the file soma_pathology-1.11.0.tar.gz.

File metadata

  • Download URL: soma_pathology-1.11.0.tar.gz
  • Upload date:
  • Size: 455.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for soma_pathology-1.11.0.tar.gz
Algorithm Hash digest
SHA256 294a76d732aaa9ef8f38813e1647f2b1a10201b255c9cfa2501794fe0ae092e9
MD5 156e9fa11c71b97573a3bed258492574
BLAKE2b-256 8d07b9c01500229964d9af516854e217b0b29816b917234bea665244ab4cdcad

See more details on using hashes here.

File details

Details for the file soma_pathology-1.11.0-py3-none-any.whl.

File metadata

  • Download URL: soma_pathology-1.11.0-py3-none-any.whl
  • Upload date:
  • Size: 544.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for soma_pathology-1.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b09206ca9d69c818eab3fd8e193f3119a6196f076c3c8bad7b1bb470be1d4253
MD5 cfe1effd6fc79c580b1ca8151e8f977e
BLAKE2b-256 703c9cfe5ea7fe03fcc1fae700deb200d446ae2d9d5f44b49e201d891afe4cff

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page