Views
No views yet

1{
2 "dataset_name": "MeQSum",
3 "learning_rate": 3e-05,
4 "model_name_or_path": "facebook/bart-large-xsum",
5 "num_train_epochs": 4,
6 "per_device_eval_batch_size": 4,
7 "per_device_train_batch_size": 4,
8 "predict_with_generate": true,
9}1from transformers import pipeline
2summarizer = pipeline("summarization", model="NouRed/medqsum-bart-large-xsum-meqsum")
3chq = '''SUBJECT: high inner eye pressure above 21 possible glaucoma
4MESSAGE: have seen inner eye pressure increase as I have begin taking
5Rizatriptan. I understand the med narrows blood vessels. Can this med.
6cause or effect the closed or wide angle issues with the eyelense/glacoma.
7'''
8summarizer(chq)| key | value |
|---|---|
| eval_rouge1 | 54.32 |
| eval_rouge2 | 38.08 |
| eval_rougeL | 51.98 |
| eval_rougeLsum | 51.99 |
@INPROCEEDINGS{10373720,
author={Zekaoui, Nour Eddine and Yousfi, Siham and Mikram, Mounia and Rhanoui, Maryem},
booktitle={2023 14th International Conference on Intelligent Systems: Theories and Applications (SITA)},
title={Enhancing Large Language Models’ Utility for Medical Question-Answering: A Patient Health Question Summarization Approach},
year={2023},
volume={},
number={},
pages={1-8},
doi={10.1109/SITA60746.2023.10373720}}