mirror of
https://github.com/YaoFANGUK/video-subtitle-remover.git
synced 2026-05-13 14:47:34 +08:00
29 lines
1.0 KiB
Bash
Executable File
29 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# !!! file set to make test_large_30k from the vanilla test_large: configs/test_large_30k.lst
|
|
|
|
# paths to data are valid for mml7
|
|
PLACES_ROOT="/data/inpainting/Places365"
|
|
OUT_DIR="/data/inpainting/paper_data/Places365_val_test"
|
|
|
|
source "$(dirname $0)/env.sh"
|
|
|
|
for datadir in test_large_30k # val_large
|
|
do
|
|
for conf in random_thin_256 random_medium_256 random_thick_256 random_thin_512 random_medium_512 random_thick_512
|
|
do
|
|
"$BINDIR/gen_mask_dataset.py" "$CONFIGDIR/data_gen/${conf}.yaml" \
|
|
"$PLACES_ROOT/$datadir" "$OUT_DIR/$datadir/$conf" --n-jobs 8
|
|
|
|
"$BINDIR/calc_dataset_stats.py" --samples-n 20 "$OUT_DIR/$datadir/$conf" "$OUT_DIR/$datadir/${conf}_stats"
|
|
done
|
|
|
|
for conf in segm_256 segm_512
|
|
do
|
|
"$BINDIR/gen_mask_dataset.py" "$CONFIGDIR/data_gen/${conf}.yaml" \
|
|
"$PLACES_ROOT/$datadir" "$OUT_DIR/$datadir/$conf" --n-jobs 2
|
|
|
|
"$BINDIR/calc_dataset_stats.py" --samples-n 20 "$OUT_DIR/$datadir/$conf" "$OUT_DIR/$datadir/${conf}_stats"
|
|
done
|
|
done
|