spoof-detect / run.sh
Niv Sardi
split dataset into train test val
b1d65c2
raw
history blame
630 Bytes
#!/bin/sh
set -e
PY=python3
PARALLEL=$(cat /proc/cpuinfo | grep processor | wc -l)
echo "πŸ“Š detected ${PARALLEL} cores"
echo "πŸ› fetching entities"
${PY} ./python/get_entities.py
echo "🌏 getting vendor data"
${PY} ./python/vendor.py --parallel $PARALLEL
echo "☠ getting extra backgrounds from OpenFish"
${PY} ./python/openfish.py --parallel $PARALLEL
echo "✨ augmenting data"
${PY} ./python/augment.py
echo "πŸ–Ό croping augmented data"
${PY} ./python/crop.py ./data/augmented/images
echo "βœ‚ split dataset into train, val and test groups"
${PY} ./python/split.py ./data/squares/
echo "🧠 train model"
sh train.sh