init: project structure with LAION scorer, conda setup, and research docs

This commit is contained in:
Kareem Horstink
2026-08-23 15:31:47 +00:00
commit 4f90f5838a
25 changed files with 1628 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
@echo off
REM Photo Judgers — Conda Environment Setup (Windows)
REM Run this from the project root: photo_judgers\setup.bat
echo ========================================
echo Photo Judgers — Setup
echo ========================================
echo.
REM Check if conda is available
where conda >nul 2>nul
if %ERRORLEVEL% NEQ 0 (
echo ERROR: conda not found. Please install Miniconda or Anaconda first.
echo Download from: https://docs.conda.io/en/latest/miniconda.html
pause
exit /b 1
)
echo Creating conda environment: photo_judgers
echo Python version: 3.11
echo.
REM Create the conda environment
conda create -y -n photo_judgers python=3.11
if %ERRORLEVEL% NEQ 0 (
echo ERROR: Failed to create conda environment.
pause
exit /b 1
)
echo.
echo Activating environment...
call conda activate photo_judgers
echo.
echo Installing packages...
echo.
REM Install from requirements.txt
pip install -r requirements.txt
echo.
echo ========================================
echo Setup complete!
echo ========================================
echo.
echo To activate the environment:
echo conda activate photo_judgers
echo.
echo To run the scorer:
echo run.bat
echo.
pause