Views
No views yet
| Method | BLEU-4 | Rouge-L | Bertscore | F1-CheXbert | F1-RadGraph | Avg |
|---|---|---|---|---|---|---|
| llava1.5-Vicuna-7b | 3.92 | 19.75 | 48.06 | 5.92 | 16.06 | 18.74 |
1import json
2import logging
3from vilmedic.blocks.scorers.scores import compute_scores
4
5refs = [
6 "The lungs are clear. The cardiomediastinal silhouette is within normal limits. No acute osseous abnormalities.",
7 "The lungs are clear.There is no pleural effusion or pneumothorax.The cardiomediastinal silhouette is normal."
8]
9hyps = [
10 "The lungs are clear. There is no pleural effusion or pneumothorax. The cardiomediastinal silhouette is normal.",
11 "The lungs are clear. The cardiomediastinal silhouette is within normal limits. No acute osseous abnormalities."
12]
13print("Computing metrics, this can take a while...")
14print(json.dumps(compute_scores(["ROUGEL", "bertscore", "radgraph", "BLEU", "chexbert"],
15 refs=refs,
16 hyps=hyps,
17 split=None,
18 seed=None,
19 config=None,
20 epoch=None,
21 logger=logging.getLogger(__name__),
22 dump=False),
23 indent=4)
24 )@inproceedings{campanini-etal-2024-ihealth,
title = "i{H}ealth-{C}hile-1 at {RRG}24: In-context Learning and Finetuning of a Large Multimodal Model for Radiology Report Generation",
author = "Campanini, Diego and
Loch, Oscar and
Messina, Pablo and
Elberg, Rafael and
Parra, Denis",
editor = "Demner-Fushman, Dina and
Ananiadou, Sophia and
Miwa, Makoto and
Roberts, Kirk and
Tsujii, Junichi",
booktitle = "Proceedings of the 23rd Workshop on Biomedical Natural Language Processing",
month = aug,
year = "2024",
address = "Bangkok, Thailand",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2024.bionlp-1.52",
doi = "10.18653/v1/2024.bionlp-1.52",
pages = "608--613"
}
@inproceedings{loch-etal-2024-ihealth,
title = "i{H}ealth-{C}hile-3{\&}2 at {RRG}24: Template Based Report Generation",
author = "Loch, Oscar and
Messina, Pablo and
Elberg, Rafael and
Campanini, Diego and
Soto, {\'A}lvaro and
Vidal, Ren{\'e} and
Parra, Denis",
editor = "Demner-Fushman, Dina and
Ananiadou, Sophia and
Miwa, Makoto and
Roberts, Kirk and
Tsujii, Junichi",
booktitle = "Proceedings of the 23rd Workshop on Biomedical Natural Language Processing",
month = aug,
year = "2024",
address = "Bangkok, Thailand",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2024.bionlp-1.53",
doi = "10.18653/v1/2024.bionlp-1.53",
pages = "614--623"
}