Add pipeline tag and link to paper
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,25 +1,27 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
tags:
|
| 3 |
-
- image-feature-extraction
|
| 4 |
- cell representation
|
| 5 |
- histology
|
| 6 |
- medical imaging
|
| 7 |
- self-supervised learning
|
| 8 |
- vision transformer
|
| 9 |
- foundation model
|
| 10 |
-
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
# Model card for LEMON
|
| 14 |
|
| 15 |
-
`LEMON` is an open-source foundation model for single-cell histology images
|
|
|
|
|
|
|
| 16 |
|
| 17 |
`LEMON` can be used to extract robust features from single-cell histology images for various downstream applications, such as gene expression prediction or cell type classification.
|
| 18 |
|
| 19 |
|
| 20 |
## How to use it to extract features
|
| 21 |
|
| 22 |
-
The code below can be used to run inference. `LEMON` expects images of size 40x40 that were extracted at 0.25 microns per pixel (40X).
|
| 23 |
|
| 24 |
```python
|
| 25 |
import torch
|
|
@@ -53,10 +55,9 @@ assert features.shape == (1, 384)
|
|
| 53 |
|
| 54 |
## Citation
|
| 55 |
|
| 56 |
-
If you found our work useful in your research, please consider citing our work
|
| 57 |
|
| 58 |
-
|
| 59 |
-
```
|
| 60 |
@misc{chadoutaud2026lemonfoundationmodelnuclear,
|
| 61 |
title={LEMON: a foundation model for nuclear morphology in Computational Pathology},
|
| 62 |
author={Loïc Chadoutaud and Alice Blondel and Hana Feki and Jacqueline Fontugne and Emmanuel Barillot and Thomas Walter},
|
|
@@ -66,4 +67,4 @@ If you found our work useful in your research, please consider citing our work a
|
|
| 66 |
primaryClass={cs.CV},
|
| 67 |
url={https://arxiv.org/abs/2603.25802},
|
| 68 |
}
|
| 69 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
pipeline_tag: image-feature-extraction
|
| 4 |
tags:
|
|
|
|
| 5 |
- cell representation
|
| 6 |
- histology
|
| 7 |
- medical imaging
|
| 8 |
- self-supervised learning
|
| 9 |
- vision transformer
|
| 10 |
- foundation model
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# Model card for LEMON
|
| 14 |
|
| 15 |
+
`LEMON` (Learning Embeddings from Morphology Of Nuclei) is an open-source foundation model for single-cell histology images, presented in the paper [LEMON: a foundation model for nuclear morphology in Computational Pathology](https://arxiv.org/abs/2603.25802).
|
| 16 |
+
|
| 17 |
+
The model is a Vision Transformer (ViT-s/8) trained using self-supervised learning on a dataset of 10 million histology cell images sampled from 10,000 slides from TCGA.
|
| 18 |
|
| 19 |
`LEMON` can be used to extract robust features from single-cell histology images for various downstream applications, such as gene expression prediction or cell type classification.
|
| 20 |
|
| 21 |
|
| 22 |
## How to use it to extract features
|
| 23 |
|
| 24 |
+
The code below can be used to run inference. `LEMON` expects images of size 40x40 that were extracted at 0.25 microns per pixel (40X). Note that the code requires the `model.py` script provided in the repository.
|
| 25 |
|
| 26 |
```python
|
| 27 |
import torch
|
|
|
|
| 55 |
|
| 56 |
## Citation
|
| 57 |
|
| 58 |
+
If you found our work useful in your research, please consider citing our work:
|
| 59 |
|
| 60 |
+
```bibtex
|
|
|
|
| 61 |
@misc{chadoutaud2026lemonfoundationmodelnuclear,
|
| 62 |
title={LEMON: a foundation model for nuclear morphology in Computational Pathology},
|
| 63 |
author={Loïc Chadoutaud and Alice Blondel and Hana Feki and Jacqueline Fontugne and Emmanuel Barillot and Thomas Walter},
|
|
|
|
| 67 |
primaryClass={cs.CV},
|
| 68 |
url={https://arxiv.org/abs/2603.25802},
|
| 69 |
}
|
| 70 |
+
```
|