Spaces:
Configuration error
Configuration error
| set -e | |
| workdir='.' | |
| datasets=('sintel' 'bonn' 'kitti') | |
| model_name='stream3r' | |
| for data in "${datasets[@]}"; do | |
| output_dir="${workdir}/eval_results/video_depth/${model_name}/${data}" | |
| echo "$output_dir" | |
| python eval/video_depth/launch.py \ | |
| --output_dir="$output_dir" \ | |
| --eval_dataset="$data" \ | |
| --checkpoint_dir="$ckpt_dir/${model_name}.ckpt" \ | |
| python eval/video_depth/eval_depth.py \ | |
| --output_dir "$output_dir" \ | |
| --eval_dataset "$data" \ | |
| --align "scale" | |
| done |