22 lines
454 B
Bash
22 lines
454 B
Bash
#!/bin/bash
|
|
# Photo Judgers — Run LAION Scorer (Linux/Mac)
|
|
# Activates the conda env and runs the scorer
|
|
|
|
set -e
|
|
|
|
echo "========================================"
|
|
echo " Photo Judgers — LAION Scorer"
|
|
echo "========================================"
|
|
echo ""
|
|
|
|
source $(conda info --base)/etc/profile.d/conda.sh
|
|
conda activate photo_judgers
|
|
|
|
echo "Running scorer..."
|
|
echo ""
|
|
|
|
python -m src.scorer "$@"
|
|
|
|
echo ""
|
|
echo "Done. Check output.json for results."
|