File size: 9,206 Bytes
91eed61 bccab52 91eed61 bccab52 702aa4a bccab52 56c631e bccab52 3557b19 bccab52 3557b19 bccab52 2ce0d1c 3557b19 bccab52 57adfe5 3557b19 bccab52 5423ac8 bccab52 52c2882 bccab52 52c2882 bccab52 5423ac8 bccab52 5423ac8 bccab52 5423ac8 bccab52 5423ac8 bccab52 a22fc24 702aa4a 3557b19 702aa4a a22fc24 b57fd77 702aa4a a22fc24 702aa4a a22fc24 702aa4a a22fc24 702aa4a 3557b19 b57fd77 3557b19 bccab52 702aa4a 3557b19 52c2882 b57fd77 3557b19 702aa4a 3557b19 702aa4a 3557b19 bccab52 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | ---
tags:
- model_hub_mixin
- pytorch_model_hub_mixin
language:
- en
---
## Model Summary
**HistAug** is a lightweight transformer-based generator for **controllable latent-space augmentations** in the feature space of the [CONCH foundation model](https://www.nature.com/articles/s41591-024-02856-4). Instead of applying costly image-space augmentations on millions of WSI patches, HistAug operates **directly on patch embeddings** extracted from a given foundation model(here CONCH). By conditioning on explicit transformation parameters (e.g., hue shift, erosion, HED color transform), HistAug generates realistic augmented embeddings while preserving semantic content. In practice, the CONCH variant of HistAug can reconstruct the corresponding ground-truth augmented embeddings with an average cosine similarity of **about 93%** at **10X, 20X, and 40X magnification**.
This enables training of Multiple Instance Learning (MIL) models with:
- ⚡ **Fast augmentation**
- 🧠 **Low memory usage** (up to 200k patches in parallel on a single V100 32GB GPU)
- 🎛 **Controllable and WSI-consistent augmentations** (bag-wise or patch-wise)
Need HistAug for a different foundation model? Explore the full collection: [**HistAug models collection**](https://huggingface.co/collections/sofieneb/histaug-models-68a334437f71d35c7037a54e).
📄 **Paper**: [*Controllable Latent Space Augmentation for Digital Pathology* (Boutaj *et al.*, 2025)](https://arxiv.org/abs/2508.14588)
---
## Usage
You can load the model from the Hub with Hugging Face’s `transformers`:
```python
import torch
from transformers import AutoModel
device = "cuda" if torch.cuda.is_available() else "cpu"
# Load HistAug (CONCH latent augmentation model)
model_id = "sofieneb/histaug-conch"
model = AutoModel.from_pretrained(model_id, trust_remote_code=True).to(device)
# Example: patch embeddings from CONCH
num_patches = 50000
embedding_dim = 512
patch_embeddings = torch.randn((num_patches, embedding_dim), device=device)
# Sample augmentation parameters
# mode="wsi_wise" applies the same transformation across the whole slide
# mode="instance_wise" applies different transformations per patch
aug_params = model.sample_aug_params(
batch_size=num_patches,
device=patch_embeddings.device,
mode="wsi_wise"
)
# Apply augmentation in latent space
augmented_embeddings = model(patch_embeddings, aug_params)
print(augmented_embeddings.shape) # (num_patches, embedding_dim)
```
## Default Transform Configuration
The original transform configuration (shipped in the model config) is:
```json
{
"transforms": {
"parameters": {
"brightness": [-0.5, 0.5],
"contrast": [-0.5, 0.5],
"crop": 0.75,
"dilation": 0.75,
"erosion": 0.75,
"powerlaw": [-0.5, 0.5],
"gaussian_blur": 0.75,
"h_flip": 0.75,
"hed": [-0.5, 0.5],
"hue": [-0.5, 0.5],
"rotation": 0.75,
"saturation": [-0.5, 0.5],
"v_flip": 0.75
}
}
}
```
* **Continuous transforms** (e.g., `brightness`, `hue`, `hed`, `powerlaw`, `saturation`) use an **interval** `[min, max]` from which parameters are sampled.
* **Discrete/binary transforms** (e.g., `h_flip`, `v_flip`, `dilation`, `erosion`, `rotation`, `gaussian_blur`, `crop`) use a **probability** (e.g., `0.75`) indicating how likely the transform is applied during sampling.
> You can access and modify this at runtime via:
>
> ```python
> print(model.histaug.transforms_parameters)
> ```
---
## Controlling Transformations
You can **inspect, modify, or delete** transformations at runtime via `model.histaug.transforms_parameters`.
- To **remove** a transform, simply `pop` the key; during sampling it will appear with parameter **`0`** (effectively disabled).
- You can also narrow a transform’s interval or change a transform’s probability, then re-sample to observe the effects.
- Sampling mode: `mode="wsi_wise"` (same parameters for all patches) or `mode="instance_wise"` (per-patch parameters).
```python
## Controlling Transformations — pop vs. change params (continuous & discrete)
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
num_to_sample = 5
# start: sample once and inspect current config
sample_1 = model.sample_aug_params(batch_size=num_to_sample, device=device, mode="wsi_wise")
print("initial sample:\n", sample_1, "\n")
print("initial transforms_parameters:\n", model.histaug.transforms_parameters, "\n")
# pop examples
# pop a continuous transform: remove "hue" (interval transform)
model.histaug.transforms_parameters.pop("hue", None)
# pop a discrete transform: remove "rotation" (probability-based)
model.histaug.transforms_parameters.pop("rotation", None)
sample_2 = model.sample_aug_params(batch_size=num_to_sample, device=device, mode="wsi_wise")
print("after popping 'hue' (continuous) and 'rotation' (discrete):\n", sample_2, "\n")
# change param examples
# change a continuous transform interval: narrow 'brightness' from [-0.5, 0.5] to [-0.25, 0.25]
model.histaug.transforms_parameters["brightness"] = [-0.25, 0.25]
# change a discrete transform probability: lower 'h_flip' from 0.75 to 0.10
model.histaug.transforms_parameters["h_flip"] = 0.10
sample_3 = model.sample_aug_params(batch_size=num_to_sample, device=device, mode="wsi_wise")
print("after changing 'brightness' interval and 'h_flip' probability:\n", sample_3, "\n")
````
---
## During MIL
You can apply latent-space augmentation **during MIL training** with a probability (e.g., **60%**). We generally recommend applying augmentation with a non-trivial probability (e.g., 0.3–0.7) rather than always-on.
```python
import torch
# histaug: the loaded HistAug model (CONCH variant)
# mil_model: your MIL aggregator (e.g., ABMIL/CLAM/TransMIL head)
# criterion, optimizer, loader already defined
device = "cuda" if torch.cuda.is_available() else "cpu"
histaug = histaug.to(device).eval() # histaug generator is frozen during MIL training
for p in histaug.parameters():
p.requires_grad_(False)
def maybe_augment_bag(bag_features: torch.Tensor,
p_apply: float = 0.60,
mode: str = "wsi_wise") -> torch.Tensor:
"""
bag_features: (num_patches, embed_dim) on device
p_apply: probability to apply augmentation
mode: "wsi_wise" (same params for all patches) or "instance_wise"
"""
if torch.rand(()) >= p_apply:
return bag_features
with torch.no_grad():
aug_params = histaug.sample_aug_params(
batch_size=bag_features.size(0),
device=bag_features.device,
mode=mode # "wsi_wise" or "instance_wise"
)
bag_features = histaug(bag_features, aug_params)
return bag_features
# --- single-bag training example ---
for bag_features, label in loader: # bag_features: (num_patches, embed_dim)
bag_features = bag_features.to(device)
# apply augmentation with 60% probability (WSI-wise by default)
bag_features = maybe_augment_bag(bag_features, p_apply=0.60, mode="wsi_wise") # output : (num_patches, embed_dim)
logits = mil_model(bag_features) # forward through your MIL head
loss = criterion(logits, label.to(device))
loss.backward()
optimizer.step()
optimizer.zero_grad()
```
---
## Offline usage (HPC clusters without internet)
If compute nodes don’t have internet, **always** run jobs with the offline flags to **prevent unnecessary network calls** and force local loads:
```bash
# On your compute job (no internet):
export HF_HUB_OFFLINE=1
export TRANSFORMERS_OFFLINE=1
```
Prepare the model **in advance** on a front-end/login node (with internet), then choose **either** approach below.
### Option — Warm the cache (simplest)
```bash
# On the front-end/login node (with internet):
python -c "from transformers import AutoModel; AutoModel.from_pretrained('sofieneb/histaug-conch', trust_remote_code=True)"
```
Then in your offline job/script:
```python
from transformers import AutoModel
model = AutoModel.from_pretrained(
"sofieneb/histaug-conch",
trust_remote_code=True,
local_files_only=True, # uses local cache only
)
```
### Option — Download to a local folder with `hf download`
```bash
# On the front-end/login node (with internet):
hf download sofieneb/histaug-conch --local-dir ./histaug-conch
```
Then in your offline job/script:
```python
from transformers import AutoModel
model = AutoModel.from_pretrained(
"./histaug-conch", # local path instead of hub ID
trust_remote_code=True,
local_files_only=True, # uses local files only
)
```
---
## Citation
If our work contributes to your research, or if you incorporate part of this code, please consider citing our paper:
```bibtex
@misc{boutaj2025controllablelatentspaceaugmentation,
title={Controllable Latent Space Augmentation for Digital Pathology},
author={Sofiène Boutaj and Marin Scalbert and Pierre Marza and Florent Couzinie-Devy and Maria Vakalopoulou and Stergios Christodoulidis},
year={2025},
eprint={2508.14588},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2508.14588},
}
```
|