Spaces:
Runtime error
Runtime error
File size: 533 Bytes
e919aa3 bbaa3e0 e919aa3 fac6e9b bbaa3e0 fac6e9b e919aa3 fac6e9b e919aa3 bbaa3e0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#!/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 "π§ train model"
sh train.sh
|