脸部LoRA训练项目:素材流水线 + Gradio控制台 + RunPod云端续炼方案(v7续炼完成)

This commit is contained in:
hmo
2026-08-10 10:10:34 +08:00
commit 77d0cbd0cb
29 changed files with 5898 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
@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