| #!/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 |