17 lines
672 B
Batchfile
17 lines
672 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
rem ============================================
|
|
rem face_checker 一键审核:把照片放进 photos 文件夹,双击本文件
|
|
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 正在审核 %PHOTOS% ...
|
|
"%PY%" "%TOOL%" check "%PHOTOS%"
|
|
echo.
|
|
echo 报告已生成: %PHOTOS%\素材审核报告.html
|
|
start "" "%PHOTOS%\素材审核报告.html"
|
|
pause
|