Views
No views yet
| File | Description |
|---|---|
cv/is299/model_best.pth.tar | Inception v3 trained at 299px (187 MB) |
cv/is299/model_TranslatorCVLogitsToUrgency_fcs.pth.tar | Urgency head (299px) |
cv/is512/model_best.pth.tar | Inception v3 trained at 512px (187 MB) |
cv/is512/model_TranslatorCVLogitsToUrgency_fcs.pth.tar | Urgency head (512px) |
cv/is1024/model_best.pth.tar | Inception v3 trained at 1024px (187 MB) |
cv/is1024/model_TranslatorCVLogitsToUrgency_fcs.pth.tar | Urgency head (1024px) |
1from huggingface_hub import snapshot_download
2
3snapshot_download(
4 repo_id="dnamodel/xraydar-cv",
5 local_dir="./xraydar-cv-weights"
6)1from huggingface_hub import hf_hub_download
2import shutil, os
3
4for size in [299, 512, 1024]:
5 dest = f"src/model_20210820_XNet38MS/model_weights/direct_multi93_is{size}_Rv10_pre00_imagenet"
6 os.makedirs(dest, exist_ok=True)
7 for f in ["model_best.pth.tar", "model_TranslatorCVLogitsToUrgency_fcs.pth.tar"]:
8 path = hf_hub_download("dnamodel/xraydar-cv", f"cv/is{size}/{f}")
9 shutil.copy(path, os.path.join(dest, f))| # | Finding | # | Finding |
|---|---|---|---|
| 0 | Abnormal (non-clinically important) | 19 | Interstitial shadowing |
| 1 | Aortic calcification | 20 | Mediastinum displaced |
| 2 | Apical changes | 21 | Mediastinum widened |
| 3 | Atelectasis | 22 | Object |
| 4 | Axillary abnormality | 23 | Paraspinal mass |
| 5 | Bronchial changes | 24 | Paratracheal/hilar enlargement |
| 6 | Bulla | 25 | Parenchymal lesion |
| 7 | Cardiomegaly | 26 | Pleural abnormality |
| 8 | Cavity | 27 | Pleural effusion |
| 9 | Clavicle fracture | 28 | Pneumomediastinum |
| 10 | Consolidation | 29 | Pneumoperitoneum |
| 11 | Cardiac calcification | 30 | Pneumothorax |
| 12 | Dextrocardia | 31 | Rib fracture |
| 13 | Dilated bowel | 32 | Rib lesion |
| 14 | Emphysema | 33 | Scoliosis |
| 15 | Ground-glass opacification | 34 | Subcutaneous emphysema |
| 16 | Hemidiaphragm elevated | 35 | Tortuosity of aorta |
| 17 | Hernia | 36 | Pulmonary blood flow redistribution |
| 18 | Hyperexpanded lungs | 37 | Volume loss |
1@article{cid2024development,
2 title={Development and validation of open-source deep neural networks for comprehensive chest x-ray reading: a retrospective, multicentre study},
3 author={Cid, Yan Digilov and Macpherson, Matt and others},
4 journal={The Lancet Digital Health},
5 volume={6},
6 number={1},
7 pages={e44--e57},
8 year={2024},
9 publisher={Elsevier},
10 doi={10.1016/S2589-7500(23)00218-2}
11}