You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, while testing the models on the benchmark, I encountered a couple of minor bugs, so I thought of mentioning them here to get them fixed.
In the evaluation/evaluate_ecgbench.py script, item dictionary does not contain key No; I think it should be id(according to the test split from ECGBench(Testing) benchmark on HuggingFace).
In the LLaVA/llava/eval/model_ecg_resume.py script, the line "text": line["conversations"][0]["value"].replace("<image>\n",""), causes AttributeError due to being a list; looks like it should be a string "text": "".join(line["conversations"][0]["value"]).replace("<image>\n",""), to fix the issue.
Hello, while testing the models on the benchmark, I encountered a couple of minor bugs, so I thought of mentioning them here to get them fixed.
evaluation/evaluate_ecgbench.py
script,item
dictionary does not contain keyNo
; I think it should beid
(according to the test split from ECGBench(Testing) benchmark on HuggingFace).LLaVA/llava/eval/model_ecg_resume.py
script, the line"text": line["conversations"][0]["value"].replace("<image>\n",""),
causesAttributeError
due to being a list; looks like it should be a string"text": "".join(line["conversations"][0]["value"]).replace("<image>\n",""),
to fix the issue.Great work on the paper. Thank you!
The text was updated successfully, but these errors were encountered: