|
#!/bin/bash |
|
|
|
gpu_list="${CUDA_VISIBLE_DEVICES:-0}" |
|
IFS=',' read -ra GPULIST <<< "$gpu_list" |
|
|
|
CHUNKS=${#GPULIST[@]} |
|
|
|
CKPT="llava-v1.5-13b" |
|
|
|
for IDX in $(seq 0 $((CHUNKS-1))); do |
|
CUDA_VISIBLE_DEVICES=${GPULIST[$IDX]} python -m llava.eval.model_vqa_loader \ |
|
--model-path liuhaotian/llava-v1.5-13b \ |
|
--question-file ./playground/data/eval/seed_bench/llava-seed-bench.jsonl \ |
|
--image-folder ./playground/data/eval/seed_bench \ |
|
--answers-file ./playground/data/eval/seed_bench/answers/$CKPT/${CHUNKS}_${IDX}.jsonl \ |
|
--num-chunks $CHUNKS \ |
|
--chunk-idx $IDX \ |
|
--temperature 0 \ |
|
--conv-mode vicuna_v1 & |
|
done |
|
|
|
wait |
|
|
|
output_file=./playground/data/eval/seed_bench/answers/$CKPT/merge.jsonl |
|
|
|
|
|
> "$output_file" |
|
|
|
|
|
for IDX in $(seq 0 $((CHUNKS-1))); do |
|
cat ./playground/data/eval/seed_bench/answers/$CKPT/${CHUNKS}_${IDX}.jsonl >> "$output_file" |
|
done |
|
|
|
|
|
python scripts/convert_seed_for_submission.py \ |
|
--annotation-file ./playground/data/eval/seed_bench/SEED-Bench.json \ |
|
--result-file $output_file \ |
|
--result-upload-file ./playground/data/eval/seed_bench/answers_upload/llava-v1.5-13b.jsonl |
|
|
|
|