Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: ohsu-non-commercial
|
| 4 |
+
license_link: https://github.com/ChangLab/cycif-panel-reduction/blob/publication/LICENSE
|
| 5 |
+
tags:
|
| 6 |
+
- biology
|
| 7 |
+
- multiplex-imaging
|
| 8 |
+
- computational-pathology
|
| 9 |
+
- cycif
|
| 10 |
+
- colorectal-cancer
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1K<n<10K
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# miniMTI-CRC Example Data
|
| 16 |
+
|
| 17 |
+
Example single-cell imaging data for testing [miniMTI](https://huggingface.co/changlab/miniMTI-CRC), a molecularly anchored virtual staining framework for multiplex tissue imaging panel reduction.
|
| 18 |
+
|
| 19 |
+
**Paper:** [bioRxiv 2026.01.21.700911](https://www.biorxiv.org/content/10.64898/2026.01.21.700911v1)
|
| 20 |
+
**Code:** [GitHub](https://github.com/ChangLab/cycif-panel-reduction)
|
| 21 |
+
**Model:** [changlab/miniMTI-CRC](https://huggingface.co/changlab/miniMTI-CRC)
|
| 22 |
+
|
| 23 |
+
## Dataset Description
|
| 24 |
+
|
| 25 |
+
10,000 single-cell image patches randomly sampled (seed=42) from CRC-Orion sample CRC04 (colorectal cancer tissue microarray, cyclic immunofluorescence).
|
| 26 |
+
|
| 27 |
+
### File
|
| 28 |
+
|
| 29 |
+
- `example_CRC04_10k.h5` — HDF5 file (~178 MB)
|
| 30 |
+
|
| 31 |
+
### HDF5 Structure
|
| 32 |
+
|
| 33 |
+
| Dataset | Shape | Type | Description |
|
| 34 |
+
|------------|--------------------|--------|-------------|
|
| 35 |
+
| `images` | (10000, 32, 32, 20)| uint8 | 17 IF channels + 3 H&E (RGB) channels |
|
| 36 |
+
| `masks` | (10000, 32, 32) | bool | Binary cell segmentation masks |
|
| 37 |
+
| `metadata` | (10000,) | string | Cell IDs and coordinates: `<sample>-CellID-<id>-x=<x>-y=<y>` |
|
| 38 |
+
|
| 39 |
+
### Channel Ordering (20 channels)
|
| 40 |
+
|
| 41 |
+
| Index | Marker | Index | Marker |
|
| 42 |
+
|-------|-------------|-------|-------------|
|
| 43 |
+
| 0 | DAPI | 10 | CD20 |
|
| 44 |
+
| 1 | CD31 | 11 | PD-L1 |
|
| 45 |
+
| 2 | CD45 | 12 | CD3e |
|
| 46 |
+
| 3 | CD68 | 13 | CD163 |
|
| 47 |
+
| 4 | CD4 | 14 | E-cadherin |
|
| 48 |
+
| 5 | FOXP3 | 15 | PD-1 |
|
| 49 |
+
| 6 | CD8a | 16 | Ki67 |
|
| 50 |
+
| 7 | CD45RO | 17 | H&E (R) |
|
| 51 |
+
| 8 | CD20 | 18 | H&E (G) |
|
| 52 |
+
| 9 | PD-L1 | 19 | H&E (B) |
|
| 53 |
+
|
| 54 |
+
Channels 0–16 are immunofluorescence markers. Channels 17–19 are co-registered H&E RGB.
|
| 55 |
+
|
| 56 |
+
## Usage
|
| 57 |
+
|
| 58 |
+
```python
|
| 59 |
+
from huggingface_hub import hf_hub_download
|
| 60 |
+
|
| 61 |
+
# Download example data
|
| 62 |
+
path = hf_hub_download(
|
| 63 |
+
repo_id="changlab/miniMTI-CRC-example",
|
| 64 |
+
filename="example_CRC04_10k.h5",
|
| 65 |
+
repo_type="dataset",
|
| 66 |
+
)
|
| 67 |
+
|
| 68 |
+
# Run inference with miniMTI
|
| 69 |
+
python scripts/inference_example.py --val-file $path --input-channels 17,6,11,13
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
## Citation
|
| 73 |
+
|
| 74 |
+
```bibtex
|
| 75 |
+
@article{sims2026minimti,
|
| 76 |
+
title={miniMTI: minimal multiplex tissue imaging enhances biomarker expression prediction from histology},
|
| 77 |
+
author={Sims, Z. and Govindarajan, S. and Ait-Ahmad, K. and Ak, C. and Kuykendall, M. and Mills, G. B. and Eksi, E. and Chang, Y. H.},
|
| 78 |
+
journal={bioRxiv},
|
| 79 |
+
year={2026},
|
| 80 |
+
doi={10.64898/2026.01.21.700911}
|
| 81 |
+
}
|
| 82 |
+
```
|