Skip to content

Commit 4eae0ef

Browse files
committed
updated
1 parent 908a217 commit 4eae0ef

2 files changed

Lines changed: 60 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/bash
2+
# Get the directory where this script is located
3+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
4+
source "${SCRIPT_DIR}/common.sh"
5+
6+
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
7+
8+
# Model configuration
9+
MODEL_FAMILY="llava_vit_sampling"
10+
MODEL_NAME="ov_encoder_large"
11+
MODEL_WEIGHT=$1
12+
FRAMES_TOKEN_NUM=256
13+
EMBEDDING_SIZE=1024
14+
NUM_FRAMES=16
15+
REPORT_DIR_SUFFIX="_16frames"
16+
17+
18+
DEFAULT_DATASETS=(
19+
"ssv2"
20+
"diving48"
21+
"perception_test"
22+
"epic_verb"
23+
"epic_noun"
24+
"hmdb51"
25+
"k400"
26+
"charadesego"
27+
)
28+
29+
# Run evaluation
30+
run_attentive_probe
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/bash
2+
# Get the directory where this script is located
3+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
4+
source "${SCRIPT_DIR}/common.sh"
5+
6+
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
7+
8+
# Model configuration
9+
MODEL_FAMILY="llava_vit_sampling"
10+
MODEL_NAME="ov_encoder_large"
11+
MODEL_WEIGHT=$1
12+
FRAMES_TOKEN_NUM=256
13+
EMBEDDING_SIZE=1024
14+
NUM_FRAMES=8
15+
REPORT_DIR_SUFFIX="_8frames"
16+
17+
18+
DEFAULT_DATASETS=(
19+
"ssv2"
20+
"diving48"
21+
"perception_test"
22+
"epic_verb"
23+
"epic_noun"
24+
"hmdb51"
25+
"k400"
26+
"charadesego"
27+
)
28+
29+
# Run evaluation
30+
run_attentive_probe

0 commit comments

Comments
 (0)