Spaces:
Runtime error
Runtime error
File size: 282 Bytes
f670afc |
1 2 3 4 5 6 7 8 9 |
MODEL=$1
DATASET=$2
for SPLIT in test train; do
RAW=dataset/${DATASET}_raw/${SPLIT}
LMDB=dataset/${DATASET}/${SPLIT}
echo ${LMDB}
python scripts/build_lmdb.py --config configs/projects/${MODEL}/${DATASET}/ampO1.yaml --data_root ${RAW} --output_root ${LMDB} --overwrite
done |