24 lines
478 B
Batchfile
24 lines
478 B
Batchfile
@echo off
|
|
REM Photo Judgers — Run LAION Scorer (Windows)
|
|
REM Activates the conda env and runs the scorer
|
|
|
|
echo ========================================
|
|
echo Photo Judgers — LAION Scorer
|
|
echo ========================================
|
|
echo.
|
|
|
|
call conda activate photo_judgers
|
|
if errorlevel 1 (
|
|
echo Failed to activate conda environment!
|
|
pause
|
|
exit /b 1
|
|
)
|
|
echo Running scorer...
|
|
echo.
|
|
|
|
python -m src.scorer %*
|
|
|
|
echo.
|
|
echo Done. Check output.json for results.
|
|
pause
|