Spaces:
Sleeping
Sleeping
File size: 704 Bytes
b27b0a2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#!/bin/bash
SPLIT="mmbench_dev_20230712"
python -m llava.eval.model_vqa_mmbench \
--model-path liuhaotian/llava-v1.5-13b \
--question-file ./playground/data/eval/mmbench/$SPLIT.tsv \
--answers-file ./playground/data/eval/mmbench/answers/$SPLIT/llava-v1.5-13b.jsonl \
--single-pred-prompt \
--temperature 0 \
--conv-mode vicuna_v1
mkdir -p playground/data/eval/mmbench/answers_upload/$SPLIT
python scripts/convert_mmbench_for_submission.py \
--annotation-file ./playground/data/eval/mmbench/$SPLIT.tsv \
--result-dir ./playground/data/eval/mmbench/answers/$SPLIT \
--upload-dir ./playground/data/eval/mmbench/answers_upload/$SPLIT \
--experiment llava-v1.5-13b
|