Skip to content

Commit 79724a2

Browse files
Create eval_ov_encoder_large_8frames_codec.sh
1 parent a8e1ef0 commit 79724a2

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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_codec.sh"
5+
6+
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
7+
8+
# Model configuration
9+
MODEL_FAMILY="ov_encoder_codec"
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_codec"
16+
17+
DEFAULT_DATASETS=(
18+
"ssv2"
19+
"diving48"
20+
"perception_test"
21+
"epic_verb"
22+
"epic_noun"
23+
"hmdb51"
24+
"k400"
25+
"charadesego"
26+
)
27+
28+
# Run evaluation
29+
run_attentive_probe_codec

0 commit comments

Comments
 (0)