Upload pope.sh with huggingface_hub
Browse files
pope.sh
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
python -m llava.eval.model_vqa_loader \
|
4 |
+
--model-path liuhaotian/llava-v1.5-13b \
|
5 |
+
--question-file ./playground/data/eval/pope/llava_pope_test.jsonl \
|
6 |
+
--image-folder ./playground/data/eval/pope/val2014 \
|
7 |
+
--answers-file ./playground/data/eval/pope/answers/llava-v1.5-13b.jsonl \
|
8 |
+
--temperature 0 \
|
9 |
+
--conv-mode vicuna_v1
|
10 |
+
|
11 |
+
python llava/eval/eval_pope.py \
|
12 |
+
--annotation-dir ./playground/data/eval/pope/coco \
|
13 |
+
--question-file ./playground/data/eval/pope/llava_pope_test.jsonl \
|
14 |
+
--result-file ./playground/data/eval/pope/answers/llava-v1.5-13b.jsonl
|