deepliif 1.1.6__py3-none-any.whl → 1.1.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- deepliif/models/__init__.py +1 -1
- {deepliif-1.1.6.dist-info → deepliif-1.1.7.dist-info}/METADATA +14 -9
- {deepliif-1.1.6.dist-info → deepliif-1.1.7.dist-info}/RECORD +7 -7
- {deepliif-1.1.6.dist-info → deepliif-1.1.7.dist-info}/LICENSE.md +0 -0
- {deepliif-1.1.6.dist-info → deepliif-1.1.7.dist-info}/WHEEL +0 -0
- {deepliif-1.1.6.dist-info → deepliif-1.1.7.dist-info}/entry_points.txt +0 -0
- {deepliif-1.1.6.dist-info → deepliif-1.1.7.dist-info}/top_level.txt +0 -0
deepliif/models/__init__.py
CHANGED
|
@@ -323,7 +323,7 @@ def inference(img, tile_size, overlap_size, model_path, use_torchserve=False, ea
|
|
|
323
323
|
for i in range(cols):
|
|
324
324
|
for j in range(rows):
|
|
325
325
|
tile = extract_tile(rescaled, tile_size, overlap_size, i, j)
|
|
326
|
-
res =
|
|
326
|
+
res = run_wrapper(tile, run_fn, model_path, eager_mode)
|
|
327
327
|
|
|
328
328
|
stitch_tile(images['Hema'], res['G1'], tile_size, overlap_size, i, j)
|
|
329
329
|
stitch_tile(images['DAPI'], res['G2'], tile_size, overlap_size, i, j)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: deepliif
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.7
|
|
4
4
|
Summary: DeepLIIF: Deep-Learning Inferred Multiplex Immunofluorescence for Immunohistochemical Image Quantification
|
|
5
5
|
Home-page: https://github.com/nadeemlab/DeepLIIF
|
|
6
6
|
Author: Parmida93
|
|
@@ -26,20 +26,16 @@ Requires-Dist: python-bioformats (>=4.0.6)
|
|
|
26
26
|
<img src="./images/DeepLIIF_logo.png" width="50%">
|
|
27
27
|
<h3 align="center"><strong>Deep-Learning Inferred Multiplex Immunofluorescence for Immunohistochemical Image Quantification</strong></h3>
|
|
28
28
|
<p align="center">
|
|
29
|
-
<a href="https://
|
|
29
|
+
<a href="https://rdcu.be/cKSBz">Nature MI'22 Link</a>
|
|
30
30
|
|
|
|
31
|
-
<a href="https://
|
|
31
|
+
<a href="https://openaccess.thecvf.com/content/CVPR2022/html/Ghahremani_DeepLIIF_An_Online_Platform_for_Quantification_of_Clinical_Pathology_Slides_CVPR_2022_paper.html">CVPR'22 Link</a>
|
|
32
32
|
|
|
|
33
|
-
<a href="https://
|
|
33
|
+
<a href="https://arxiv.org/abs/2305.16465">MICCAI'23 link</a>
|
|
34
34
|
|
|
|
35
35
|
<a href="https://deepliif.org/">Cloud Deployment</a>
|
|
36
36
|
|
|
|
37
37
|
<a href="https://nadeemlab.github.io/DeepLIIF/">Documentation</a>
|
|
38
38
|
|
|
|
39
|
-
<a href="#docker">Docker</a>
|
|
40
|
-
|
|
|
41
|
-
<a href="https://github.com/nadeemlab/DeepLIIF/tree/main/ImageJ_Plugin">ImageJ Plugin</a>
|
|
42
|
-
|
|
|
43
39
|
<a href="#support">Support</a>
|
|
44
40
|
</p>
|
|
45
41
|
</p>
|
|
@@ -366,6 +362,9 @@ for the same slide (de novo staining) and would like to contribute that data for
|
|
|
366
362
|
co-registration, whole-cell multiplex segmentation via [ImPartial](https://github.com/nadeemlab/ImPartial), train the
|
|
367
363
|
DeepLIIF model and release back to the community with full credit to the contributors.
|
|
368
364
|
|
|
365
|
+
- [x] **Memorial Sloan Kettering Cancer Center** [AI-ready immunohistochemistry and multiplex immunofluorescence dataset](https://zenodo.org/record/4751737#.YKRTS0NKhH4) for breast, lung, and bladder cancers (**Nature Machine Intelligence'22**)
|
|
366
|
+
- [x] **Moffitt Cancer Center** AI-ready multiplex immunofluorescence and multiplex immunohistochemistry dataset for head-and-neck squamous cell carcinoma (**MICCAI'23**)
|
|
367
|
+
|
|
369
368
|
## Support
|
|
370
369
|
Please use the [Image.sc Forum](https://forum.image.sc/tag/deepliif) for discussion and questions related to DeepLIIF.
|
|
371
370
|
|
|
@@ -379,7 +378,7 @@ and is available for non-commercial academic purposes.
|
|
|
379
378
|
* This code is inspired by [CycleGAN and pix2pix in PyTorch](https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix).
|
|
380
379
|
|
|
381
380
|
## Reference
|
|
382
|
-
If you find our work useful in your research or if you use parts of this code, please cite
|
|
381
|
+
If you find our work useful in your research or if you use parts of this code or our released dataset, please cite the following papers:
|
|
383
382
|
```
|
|
384
383
|
@article{ghahremani2022deep,
|
|
385
384
|
title={Deep learning-inferred multiplex immunofluorescence for immunohistochemical image quantification},
|
|
@@ -400,4 +399,10 @@ If you find our work useful in your research or if you use parts of this code, p
|
|
|
400
399
|
year={2022}
|
|
401
400
|
}
|
|
402
401
|
|
|
402
|
+
@article{ghahremani2023deepliifdataset,
|
|
403
|
+
title={An AI-Ready Multiplex Staining Dataset for Reproducible and Accurate Characterization of Tumor Immune Microenvironment},
|
|
404
|
+
author={Ghahremani, Parmida and Marino, Joseph and Hernandez-Prera, Juan and V. de la Iglesia, Janis and JC Slebos, Robbert and H. Chung, Christine and Nadeem, Saad},
|
|
405
|
+
journal={International Conference on Medical Image Computing and Computer-Assisted Intervention (MICCAI)},
|
|
406
|
+
year={2023}
|
|
407
|
+
}
|
|
403
408
|
```
|
|
@@ -11,7 +11,7 @@ deepliif/data/single_dataset.py,sha256=hWjqTkRESEMppZj_r8bi3G0hAZ5EfvXYgE_qRbpiE
|
|
|
11
11
|
deepliif/data/template_dataset.py,sha256=PCDBnFRzRKReaeWgKUZmW0LrzRByI9adrKDJ6SN2KMs,3592
|
|
12
12
|
deepliif/data/unaligned_dataset.py,sha256=m7j-CX-hkXbhg96NSEcaCagNVhTuXKkMsBADdMEJDBA,3393
|
|
13
13
|
deepliif/models/DeepLIIF_model.py,sha256=CE-fs9g9zaeUtBKGEYtEsVVMRRQ8V-i9cOWO7cy4Z0U,20669
|
|
14
|
-
deepliif/models/__init__.py,sha256=
|
|
14
|
+
deepliif/models/__init__.py,sha256=FRjj-kFG67MG6VAdsbehJkloi2GDO9vTbZoktPkVykc,17778
|
|
15
15
|
deepliif/models/base_model.py,sha256=MGIsgMbhbfJyKMW_IiM4TCxvvHSioqKjdbti1k9u4ko,12951
|
|
16
16
|
deepliif/models/networks.py,sha256=bN4yjRdE413efUESq8pvhzPDgFCTwFKXyQOrRqHckWY,32177
|
|
17
17
|
deepliif/options/__init__.py,sha256=WEkvROZkYWDVDCrB_P66wPYYU2cMgBmVx2i7_BpEKq0,137
|
|
@@ -25,9 +25,9 @@ deepliif/util/html.py,sha256=RNAONZ4opP-bViahgmpSbHwOc6jXKQRnWRAVIaeIvac,3309
|
|
|
25
25
|
deepliif/util/image_pool.py,sha256=M89Hc7DblRWroNP71S9mAdRn7h3DrhPFPjqFxxZYSgw,2280
|
|
26
26
|
deepliif/util/util.py,sha256=bTArzuhIMGgGweH0v5rkiHrqBxc24BDv12rssOE9OoI,4636
|
|
27
27
|
deepliif/util/visualizer.py,sha256=5V1lWidHqssJX21jn1P5-bOVgtrEXKVaQgnMWAsMfqg,15636
|
|
28
|
-
deepliif-1.1.
|
|
29
|
-
deepliif-1.1.
|
|
30
|
-
deepliif-1.1.
|
|
31
|
-
deepliif-1.1.
|
|
32
|
-
deepliif-1.1.
|
|
33
|
-
deepliif-1.1.
|
|
28
|
+
deepliif-1.1.7.dist-info/LICENSE.md,sha256=HlZw_UPS6EtJimJ_Ci7xKh-S5Iubs0Z8y8E6EZ3ZNyE,956
|
|
29
|
+
deepliif-1.1.7.dist-info/METADATA,sha256=cTL4yv1e45pY0Isz-4qFPE8QYLS-9ffQTBwbB6aaLsI,24145
|
|
30
|
+
deepliif-1.1.7.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
31
|
+
deepliif-1.1.7.dist-info/entry_points.txt,sha256=f70-10j2q68o_rDlsE3hspnv4ejlDnXwwGZ9JJ-3yF4,37
|
|
32
|
+
deepliif-1.1.7.dist-info/top_level.txt,sha256=vLDK5YKmDz08E7PywuvEjAo7dM5rnIpsjR4c0ubQCnc,13
|
|
33
|
+
deepliif-1.1.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|