20 lines
472 B
Bash
20 lines
472 B
Bash
#!/bin/bash
|
|
# Photo Judgers — Shortlist Builder (Linux/Mac)
|
|
# Reads output.json, asks for thresholds, copies photos to shortlist folder
|
|
|
|
set -e
|
|
|
|
echo "========================================"
|
|
echo " Photo Judgers — Shortlist Builder"
|
|
echo "========================================"
|
|
echo ""
|
|
|
|
# Activate conda env
|
|
source $(conda info --base)/etc/profile.d/conda.sh
|
|
conda activate photo_judgers
|
|
|
|
echo "Running shortlist builder..."
|
|
echo ""
|
|
|
|
python -m src.shortlist "$@"
|