Skip to content

Commit a03dd9a

Browse files
committed
Update eval & requirements
1 parent efe820a commit a03dd9a

File tree

6 files changed

+77
-8
lines changed

6 files changed

+77
-8
lines changed

internvl_chat/eval/cmmmu/evaluate_cmmmu.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ouimport argparse
1+
import argparse
22
import json
33
import os
44
import random

internvl_chat/evaluate.sh

+70
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,76 @@ if [ ${DATASET} == "refcoco-val" ]; then
289289
eval/refcoco/evaluate_grounding.py --checkpoint ${CHECKPOINT} --datasets refcoco_val "${ARGS[@]:2}"
290290
fi
291291

292+
if [ ${DATASET} == "refcoco-testA" ]; then
293+
torchrun \
294+
--nnodes=1 \
295+
--node_rank=0 \
296+
--master_addr=127.0.0.1 \
297+
--nproc_per_node=${GPUS} \
298+
--master_port=${MASTER_PORT} \
299+
eval/refcoco/evaluate_grounding.py --checkpoint ${CHECKPOINT} --datasets refcoco_testA "${ARGS[@]:2}"
300+
fi
301+
302+
if [ ${DATASET} == "refcoco-testB" ]; then
303+
torchrun \
304+
--nnodes=1 \
305+
--node_rank=0 \
306+
--master_addr=127.0.0.1 \
307+
--nproc_per_node=${GPUS} \
308+
--master_port=${MASTER_PORT} \
309+
eval/refcoco/evaluate_grounding.py --checkpoint ${CHECKPOINT} --datasets refcoco_testB "${ARGS[@]:2}"
310+
fi
311+
312+
if [ ${DATASET} == "refcoco+-val" ]; then
313+
torchrun \
314+
--nnodes=1 \
315+
--node_rank=0 \
316+
--master_addr=127.0.0.1 \
317+
--nproc_per_node=${GPUS} \
318+
--master_port=${MASTER_PORT} \
319+
eval/refcoco/evaluate_grounding.py --checkpoint ${CHECKPOINT} --datasets refcoco+_val "${ARGS[@]:2}"
320+
fi
321+
322+
if [ ${DATASET} == "refcoco+-testA" ]; then
323+
torchrun \
324+
--nnodes=1 \
325+
--node_rank=0 \
326+
--master_addr=127.0.0.1 \
327+
--nproc_per_node=${GPUS} \
328+
--master_port=${MASTER_PORT} \
329+
eval/refcoco/evaluate_grounding.py --checkpoint ${CHECKPOINT} --datasets refcoco+_testA "${ARGS[@]:2}"
330+
fi
331+
332+
if [ ${DATASET} == "refcoco+-testB" ]; then
333+
torchrun \
334+
--nnodes=1 \
335+
--node_rank=0 \
336+
--master_addr=127.0.0.1 \
337+
--nproc_per_node=${GPUS} \
338+
--master_port=${MASTER_PORT} \
339+
eval/refcoco/evaluate_grounding.py --checkpoint ${CHECKPOINT} --datasets refcoco+_testB "${ARGS[@]:2}"
340+
fi
341+
342+
if [ ${DATASET} == "refcocog-val" ]; then
343+
torchrun \
344+
--nnodes=1 \
345+
--node_rank=0 \
346+
--master_addr=127.0.0.1 \
347+
--nproc_per_node=${GPUS} \
348+
--master_port=${MASTER_PORT} \
349+
eval/refcoco/evaluate_grounding.py --checkpoint ${CHECKPOINT} --datasets refcocog_val "${ARGS[@]:2}"
350+
fi
351+
352+
if [ ${DATASET} == "refcocog-test" ]; then
353+
torchrun \
354+
--nnodes=1 \
355+
--node_rank=0 \
356+
--master_addr=127.0.0.1 \
357+
--nproc_per_node=${GPUS} \
358+
--master_port=${MASTER_PORT} \
359+
eval/refcoco/evaluate_grounding.py --checkpoint ${CHECKPOINT} --datasets refcocog_test "${ARGS[@]:2}"
360+
fi
361+
292362
if [ ${DATASET} == "llava-bench" ]; then
293363
rm -rf results/llava_bench_results_review.jsonl
294364
python eval/llava_bench/evaluate_llava_bench.py --checkpoint ${CHECKPOINT} "${ARGS[@]:2}"

internvl_chat/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ dependencies = [
1616
"torch>=2", "torchvision>=0.15",
1717
"transformers==4.37.2", "tokenizers==0.15.1", "sentencepiece==0.1.99", "shortuuid",
1818
"accelerate", "peft>=0.4.0", "bitsandbytes==0.41.0",
19-
"pydantic<2,>=1", "markdown2[all]", "numpy", "scikit-learn>=1.2.2",
19+
"pydantic", "markdown2[all]", "numpy", "scikit-learn>=1.2.2",
2020
"gradio==3.35.2", "gradio_client==0.2.9",
2121
"requests", "httpx==0.24.0", "uvicorn", "fastapi",
22-
"deepspeed==0.10.0", "einops", "einops-exts", "timm==0.9.12",
22+
"deepspeed==0.13.5", "einops", "einops-exts", "timm==0.9.12",
2323
]
2424

2525
[project.urls]

internvl_chat_llava/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ dependencies = [
1616
"torch>=2", "torchvision>=0.15",
1717
"transformers>=4.37.2", "tokenizers==0.15.1", "sentencepiece==0.1.99", "shortuuid",
1818
"accelerate", "peft>=0.4.0", "bitsandbytes==0.41.0",
19-
"pydantic<2,>=1", "markdown2[all]", "numpy", "scikit-learn>=1.2.2",
19+
"pydantic", "markdown2[all]", "numpy", "scikit-learn>=1.2.2",
2020
"gradio==3.35.2", "gradio_client==0.2.9",
2121
"requests", "httpx==0.24.0", "uvicorn", "fastapi",
22-
"deepspeed==0.10.0", "einops", "einops-exts", "timm==0.9.12",
22+
"deepspeed==0.13.5", "einops", "einops-exts", "timm==0.9.12",
2323
]
2424

2525
[project.urls]

requirements/internvl_chat.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
accelerate
22
bitsandbytes==0.41.0
33
decord
4-
deepspeed==0.10.0
4+
deepspeed==0.13.5
55
einops==0.6.1
66
einops-exts==0.0.4
7-
flash_attn==2.3.6
87
huggingface_hub
98
imageio
109
numpy

requirements/streamlit_demo.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ gradio==3.35.2
33
gradio_client==0.2.9
44
httpx==0.24.0
55
markdown2[all]
6-
pydantic<2,>=1
6+
pydantic
77
requests
88
streamlit
99
streamlit-image-select

0 commit comments

Comments
 (0)