mirror of
https://github.com/YaoFANGUK/video-subtitle-remover.git
synced 2026-05-20 21:07:40 +08:00
38 lines
1.5 KiB
Bash
38 lines
1.5 KiB
Bash
mkdir celeba-hq-dataset
|
|
|
|
unzip data256x256.zip -d celeba-hq-dataset/
|
|
|
|
# Reindex
|
|
for i in `echo {00001..30000}`
|
|
do
|
|
mv 'celeba-hq-dataset/data256x256/'$i'.jpg' 'celeba-hq-dataset/data256x256/'$[10#$i - 1]'.jpg'
|
|
done
|
|
|
|
|
|
# Split: split train -> train & val
|
|
cat fetch_data/train_shuffled.flist | shuf > celeba-hq-dataset/temp_train_shuffled.flist
|
|
cat celeba-hq-dataset/temp_train_shuffled.flist | head -n 2000 > celeba-hq-dataset/val_shuffled.flist
|
|
cat celeba-hq-dataset/temp_train_shuffled.flist | tail -n +2001 > celeba-hq-dataset/train_shuffled.flist
|
|
cat fetch_data/val_shuffled.flist > celeba-hq-dataset/visual_test_shuffled.flist
|
|
|
|
mkdir celeba-hq-dataset/train_256/
|
|
mkdir celeba-hq-dataset/val_source_256/
|
|
mkdir celeba-hq-dataset/visual_test_source_256/
|
|
|
|
cat celeba-hq-dataset/train_shuffled.flist | xargs -I {} mv celeba-hq-dataset/data256x256/{} celeba-hq-dataset/train_256/
|
|
cat celeba-hq-dataset/val_shuffled.flist | xargs -I {} mv celeba-hq-dataset/data256x256/{} celeba-hq-dataset/val_source_256/
|
|
cat celeba-hq-dataset/visual_test_shuffled.flist | xargs -I {} mv celeba-hq-dataset/data256x256/{} celeba-hq-dataset/visual_test_source_256/
|
|
|
|
|
|
# create location config celeba.yaml
|
|
PWD=$(pwd)
|
|
DATASET=${PWD}/celeba-hq-dataset
|
|
CELEBA=${PWD}/configs/training/location/celeba.yaml
|
|
|
|
touch $CELEBA
|
|
echo "# @package _group_" >> $CELEBA
|
|
echo "data_root_dir: ${DATASET}/" >> $CELEBA
|
|
echo "out_root_dir: ${PWD}/experiments/" >> $CELEBA
|
|
echo "tb_dir: ${PWD}/tb_logs/" >> $CELEBA
|
|
echo "pretrained_models: ${PWD}/" >> $CELEBA
|