Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,26 @@
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-4.0
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-4.0
|
3 |
+
library_name: pytorch
|
4 |
---
|
5 |
+
|
6 |
+
A lymphocyte classification model. This model is an InceptionV4 (without batch normalization)
|
7 |
+
and was trained on 23 types of cancers from TCGA.
|
8 |
+
|
9 |
+
Please refer to the [original GitHub Repo](https://github.com/ShahiraAbousamra/til_classification)
|
10 |
+
and the [associated paper](https://doi.org/10.3389/fonc.2021.806603). If you find this model useful,
|
11 |
+
please consider citing relevant paper:
|
12 |
+
|
13 |
+
```bibtex
|
14 |
+
@article{abousamra2022deep,
|
15 |
+
title={Deep learning-based mapping of tumor infiltrating lymphocytes in whole slide images of 23 types of cancer},
|
16 |
+
author={Abousamra, Shahira and Gupta, Rajarsi and Hou, Le and Batiste, Rebecca and Zhao, Tianhao and Shankar, Anand and Rao, Arvind and Chen, Chao and Samaras, Dimitris and Kurc, Tahsin and others},
|
17 |
+
journal={Frontiers in oncology},
|
18 |
+
volume={11},
|
19 |
+
pages={5971},
|
20 |
+
year={2022},
|
21 |
+
publisher={Frontiers}
|
22 |
+
}
|
23 |
+
```
|
24 |
+
|
25 |
+
The model was converted from its original TF Slim implementation to PyTorch using the script
|
26 |
+
`convert_tf_to_pytorch_til_inceptionv4.py` (in this repository).
|