Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Couple of minor bugs #4

Open
mahesh973 opened this issue Jan 27, 2025 · 0 comments
Open

Couple of minor bugs #4

mahesh973 opened this issue Jan 27, 2025 · 0 comments

Comments

@mahesh973
Copy link

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.

  1. 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).
def eval_mmmu(dir):
    print("====mmmu====")
    with open("/path/to/PULSE/data/ECGBench/mmmu-ecg.json", "r", encoding='utf-8') as f:
        data = json.load(f)
        answer_dict = {item["No"]: item["conversations"][1]["value"] for item in data}
    
    score_dict = {}
    for root, dirs, files in os.walk(dir):
        for file in files:
            if file.endswith(".jsonl"):
                predict_list = []
                golden_list = []
                file_path = os.path.join(root, file)
                if "mmmu-ecg" not in file_path:
                    continue
  1. 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.
def eval_model(args):
    # Model
    disable_torch_init()
    model_path = args.model_path
    model_name = get_model_name_from_path(model_path)
    tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, args.model_base, model_name)
    
    questions = []
    with open(args.question_file, "r") as f:
        json_data = json.load(f)
        for line in json_data:
            print(line)
            questions.append({"question_id": line["id"], 
                              "image": line["image"], 
                              "text": line["conversations"][0]["value"].replace("<image>\n",""),
                              "ans": line["conversations"][1]["value"]})

Great work on the paper. Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant