#!/bin/bash

# Specify the directory to iterate over
#directory="/data/DAVIS/1080p"
#
## Iterate over all files and directories in the specified directory
#for entry in "$directory"/*
#do
#    echo "$entry"
#    CUDA_VISIBLE_DEVICES=2 python3 train.py -d dog --imgpath $entry -n $(basename "$entry") -v 15 --overfit --gm_flow --online --point_track --online --until_img 200 --n_train_steps 510
#done
for x in `ls /data/DAVIS/1080p`; 
do 
    echo $x; 
    CUDA_VISIBLE_DEVICES=6 python3 train.py -d dog --imgpath /data/DAVIS/1080p/$x/ -v 10 --overfit --gm_flow --point_track --online --name davis_hires_$x --n_train_steps 510
done
