Update README.md
Browse files
README.md
CHANGED
|
@@ -8,7 +8,7 @@ tags:
|
|
| 8 |
- text-classification
|
| 9 |
---
|
| 10 |
|
| 11 |
-
#
|
| 12 |
|
| 13 |
Custom RadBERT sequence-classification model converted from a training checkpoint with:
|
| 14 |
- backbone initialized from `zzxslp/RadBERT-RoBERTa-4m`
|
|
@@ -53,3 +53,51 @@ with torch.no_grad():
|
|
| 53 |
print("logits shape:", logits.shape) # [batch_size, num_labels]
|
| 54 |
print("pred classes:", pred_class.tolist())
|
| 55 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- text-classification
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# RadBERT-CT
|
| 12 |
|
| 13 |
Custom RadBERT sequence-classification model converted from a training checkpoint with:
|
| 14 |
- backbone initialized from `zzxslp/RadBERT-RoBERTa-4m`
|
|
|
|
| 53 |
print("logits shape:", logits.shape) # [batch_size, num_labels]
|
| 54 |
print("pred classes:", pred_class.tolist())
|
| 55 |
```
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
## Citation
|
| 59 |
+
|
| 60 |
+
```bibtex
|
| 61 |
+
@article{Hamamci2026Generalist,
|
| 62 |
+
author = {Hamamci, Ibrahim Ethem and Er, Selim and Wang, Chen and others},
|
| 63 |
+
title = {Generalist foundation models from a multimodal dataset for 3D computed tomography},
|
| 64 |
+
journal = {Nature Biomedical Engineering},
|
| 65 |
+
year = {2026},
|
| 66 |
+
month = feb,
|
| 67 |
+
day = {12},
|
| 68 |
+
doi = {10.1038/s41551-025-01599-y},
|
| 69 |
+
url = {https://doi.org/10.1038/s41551-025-01599-y},
|
| 70 |
+
publisher = {Springer Nature}
|
| 71 |
+
}
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
Metric available in **RadEval**
|
| 75 |
+
```bibtex
|
| 76 |
+
@inproceedings{xu-etal-2025-radeval,
|
| 77 |
+
title = "{R}ad{E}val: A framework for radiology text evaluation",
|
| 78 |
+
author = "Xu, Justin and
|
| 79 |
+
Zhang, Xi and
|
| 80 |
+
Abderezaei, Javid and
|
| 81 |
+
Bauml, Julie and
|
| 82 |
+
Boodoo, Roger and
|
| 83 |
+
Haghighi, Fatemeh and
|
| 84 |
+
Ganjizadeh, Ali and
|
| 85 |
+
Brattain, Eric and
|
| 86 |
+
Van Veen, Dave and
|
| 87 |
+
Meng, Zaiqiao and
|
| 88 |
+
Eyre, David W and
|
| 89 |
+
Delbrouck, Jean-Benoit",
|
| 90 |
+
editor = {Habernal, Ivan and
|
| 91 |
+
Schulam, Peter and
|
| 92 |
+
Tiedemann, J{\"o}rg},
|
| 93 |
+
booktitle = "Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
|
| 94 |
+
month = nov,
|
| 95 |
+
year = "2025",
|
| 96 |
+
address = "Suzhou, China",
|
| 97 |
+
publisher = "Association for Computational Linguistics",
|
| 98 |
+
url = "https://aclanthology.org/2025.emnlp-demos.40/",
|
| 99 |
+
doi = "10.18653/v1/2025.emnlp-demos.40",
|
| 100 |
+
pages = "546--557",
|
| 101 |
+
ISBN = "979-8-89176-334-0",
|
| 102 |
+
}
|
| 103 |
+
```
|