Files
face-lora-qwen-image/tools/一键选图.bat
T

17 lines
707 B
Batchfile

@echo off
chcp 65001 >nul
rem ============================================
rem face_checker 智能选图:从 photos 里挑出最多样化的 20 张
rem ============================================
set TOOL=D:\F\NewI\opencode\daily-workspace\projects\脸部LoRA训练-Qwen-Image\tools\face_checker.py
set PY=D:\AI\sd\musubi-tuner\.venv\Scripts\python.exe
set PHOTOS=D:\F\NewI\opencode\daily-workspace\projects\脸部LoRA训练-Qwen-Image\photos
if not exist "%PHOTOS%" mkdir "%PHOTOS%"
echo 正在智能选图(推荐 20 张)...
"%PY%" "%TOOL%" pick "%PHOTOS%" --count 20
echo.
echo 推荐报告已生成: %PHOTOS%\智能选图推荐_20张.html
start "" "%PHOTOS%\智能选图推荐_20张.html"
pause