File size: 568 Bytes
de15dc5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash
DATA_DIR=/disk/gjw/msr-vtt
OUT_DIR=./runs/simple_msrvtt
python simple_eval.py \
--do_eval \
--datatype msrvtt \
--output_dir "$OUT_DIR" \
--val_csv "$DATA_DIR/MSRVTT_JSFUSION_test.csv" \
--data_path "$DATA_DIR/MSRVTT_data.json" \
--features_path "$DATA_DIR/compressed_videos" \
--batch_size_val 16 \
--max_words 32 \
--max_frames 12 \
--slice_framepos 2 \
--loose_type \
--num_thread_reader 2 \
--linear_patch 2d \
--sim_header meanP \
--pretrained_clip_name ViT-B/32 \
--expand_msrvtt_sentences \
--resume_model 4 |