deepliif 1.1.15__py3-none-any.whl → 1.2.0__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 +5 -5
- {deepliif-1.1.15.dist-info → deepliif-1.2.0.dist-info}/METADATA +624 -628
- {deepliif-1.1.15.dist-info → deepliif-1.2.0.dist-info}/RECORD +7 -7
- {deepliif-1.1.15.dist-info → deepliif-1.2.0.dist-info}/WHEEL +5 -5
- {deepliif-1.1.15.dist-info → deepliif-1.2.0.dist-info}/LICENSE.md +0 -0
- {deepliif-1.1.15.dist-info → deepliif-1.2.0.dist-info}/entry_points.txt +0 -0
- {deepliif-1.1.15.dist-info → deepliif-1.2.0.dist-info}/top_level.txt +0 -0
deepliif/models/__init__.py
CHANGED
|
@@ -283,11 +283,11 @@ def run_dask(img, model_path=None, nets=None, eager_mode=False, opt=None, seg_on
|
|
|
283
283
|
if opt.model in ['DeepLIIF','DeepLIIFKD']:
|
|
284
284
|
if seg_weights is None:
|
|
285
285
|
weights = {
|
|
286
|
-
'G51': 0.
|
|
287
|
-
'G52': 0.
|
|
288
|
-
'G53': 0.
|
|
289
|
-
'G54': 0.
|
|
290
|
-
'G55': 0.
|
|
286
|
+
'G51': 0.5, # IHC
|
|
287
|
+
'G52': 0.0, # Hema
|
|
288
|
+
'G53': 0.0, # DAPI
|
|
289
|
+
'G54': 0.0, # Lap2
|
|
290
|
+
'G55': 0.5, # Marker
|
|
291
291
|
}
|
|
292
292
|
else:
|
|
293
293
|
weights = {
|