Spaces:
Running
on
T4
Running
on
T4
File size: 590 Bytes
5920b49 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash
python -m llava.eval.model_vqa_loader \
--model-path liuhaotian/llava-v1.5-13b \
--question-file ./playground/data/eval/pope/llava_pope_test.jsonl \
--image-folder ./playground/data/eval/pope/val2014 \
--answers-file ./playground/data/eval/pope/answers/llava-v1.5-13b.jsonl \
--temperature 0 \
--conv-mode vicuna_v1
python llava/eval/eval_pope.py \
--annotation-dir ./playground/data/eval/pope/coco \
--question-file ./playground/data/eval/pope/llava_pope_test.jsonl \
--result-file ./playground/data/eval/pope/answers/llava-v1.5-13b.jsonl
|