包含: - hair_service_sd: 换发型/换发色算法服务 (端口 8801) - photo_service: LoRA 训练调度服务 (端口 32678) - stable-diffusion-webui: SD WebUI 推理服务 (端口 57860) - kohya_ss_home: 训练环境代码 - meidaojia: 监控测试脚本 - setup.sh: 一键部署脚本 (conda环境恢复 + 配置生成 + 完整性检查) - start_all_services.sh: 启动3个服务 - configure.ini.template: 路径模板化 (BASE_DIR自动推导) - conda_envs/py310.yml: py310 环境定义 大文件 (weights/, models/, data/, conda_envs/*.tar.gz 等) 通过 .gitignore 排除, 由网盘单独上传。
47 lines
1.2 KiB
Python
Executable File
47 lines
1.2 KiB
Python
Executable File
from torch.utils.checkpoint import checkpoint
|
|
|
|
import ldm.modules.attention
|
|
import ldm.modules.diffusionmodules.openaimodel
|
|
|
|
|
|
def BasicTransformerBlock_forward(self, x, context=None):
|
|
return checkpoint(self._forward, x, context)
|
|
|
|
|
|
def AttentionBlock_forward(self, x):
|
|
return checkpoint(self._forward, x)
|
|
|
|
|
|
def ResBlock_forward(self, x, emb):
|
|
return checkpoint(self._forward, x, emb)
|
|
|
|
|
|
stored = []
|
|
|
|
|
|
def add():
|
|
if len(stored) != 0:
|
|
return
|
|
|
|
stored.extend([
|
|
ldm.modules.attention.BasicTransformerBlock.forward,
|
|
ldm.modules.diffusionmodules.openaimodel.ResBlock.forward,
|
|
ldm.modules.diffusionmodules.openaimodel.AttentionBlock.forward
|
|
])
|
|
|
|
ldm.modules.attention.BasicTransformerBlock.forward = BasicTransformerBlock_forward
|
|
ldm.modules.diffusionmodules.openaimodel.ResBlock.forward = ResBlock_forward
|
|
ldm.modules.diffusionmodules.openaimodel.AttentionBlock.forward = AttentionBlock_forward
|
|
|
|
|
|
def remove():
|
|
if len(stored) == 0:
|
|
return
|
|
|
|
ldm.modules.attention.BasicTransformerBlock.forward = stored[0]
|
|
ldm.modules.diffusionmodules.openaimodel.ResBlock.forward = stored[1]
|
|
ldm.modules.diffusionmodules.openaimodel.AttentionBlock.forward = stored[2]
|
|
|
|
stored.clear()
|
|
|