脸部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 里挑出最多样化的 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