Skip to content

Commit 9cd6a12

Browse files
author
Theodore Zhao
committed
Update target_dist.json loading from HuggingFace
1 parent 3634dc4 commit 9cd6a12

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

inference_utils/output_processing.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
from scipy import stats
33
import numpy as np
44

5-
6-
target_dist = json.load(open("inference_utils/target_dist.json"))
5+
import huggingface_hub
76

87

98
def check_mask_stats(img, mask, modality_type, target):
@@ -12,6 +11,9 @@ def check_mask_stats(img, mask, modality_type, target):
1211
# modality_type: str, see target_dist.json for the list of modality types
1312
# target: str, see target_dist.json for the list of targets
1413

14+
huggingface_hub.hf_hub_download('microsoft/BiomedParse', filename='target_dist.json', local_dir='./inference_utils')
15+
target_dist = json.load(open("inference_utils/target_dist.json"))
16+
1517
if modality_type not in target_dist:
1618
raise ValueError(f"Currently support modality types: {list(target_dist.keys())}")
1719

inference_utils/target_dist.json

100755100644
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:384e5f8db866b757dc61e28d205c1e7223bf0b7ed416f91289ad0821a78e52db
3-
size 10812
2+
oid sha256:1ef667c043867efc28b0c217448f99c0a8f24f11ffceb02923eaf7e4c39038ed
3+
size 11183

0 commit comments

Comments
 (0)