CyclicGen icon indicating copy to clipboard operation
CyclicGen copied to clipboard

Should I replace CyclicGen_train_stage1's `ucf101_train_files_frameX.txt` to `frameX.txt` ?

Open KindleHe opened this issue 4 years ago • 0 comments

Should I replace CyclicGen_train_stage1's ucf101_train_files_frameX.txt to frameX.txt generated by following steps ?

# 1. download UCF101 and rename:
wget https://www.crcv.ucf.edu/data/UCF101/UCF101.rar && unrar x UCF101.rar && mv UCF-101 UCF101
# 2. download and prepare train/test list:
mkdir ucfTrainTestlist && mv ucf101_train_test_split/*.txt  ucfTrainTestlist
# 3. split UCF101 to tran/test:
python3 1_move_file.py
# 4. split .avi to .png:
brew install parallel
parallel -j 12 ./extract_only.sh ::: $( find ./ -name *.avi )
# 5. generate frame1.txt frame2.txt frame3.txt
python3 2_filter_psnr.py

KindleHe avatar Aug 22 '19 12:08 KindleHe