包含: - 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 排除, 由网盘单独上传。
44 lines
1.6 KiB
Python
Executable File
44 lines
1.6 KiB
Python
Executable File
import os
|
|
import sys
|
|
|
|
from modules import modelloader, devices
|
|
from modules.shared import opts
|
|
from modules.upscaler import Upscaler, UpscalerData
|
|
from modules.upscaler_utils import upscale_with_model
|
|
|
|
|
|
class UpscalerHAT(Upscaler):
|
|
def __init__(self, dirname):
|
|
self.name = "HAT"
|
|
self.scalers = []
|
|
self.user_path = dirname
|
|
super().__init__()
|
|
for file in self.find_models(ext_filter=[".pt", ".pth"]):
|
|
name = modelloader.friendly_name(file)
|
|
scale = 4 # TODO: scale might not be 4, but we can't know without loading the model
|
|
scaler_data = UpscalerData(name, file, upscaler=self, scale=scale)
|
|
self.scalers.append(scaler_data)
|
|
|
|
def do_upscale(self, img, selected_model):
|
|
try:
|
|
model = self.load_model(selected_model)
|
|
except Exception as e:
|
|
print(f"Unable to load HAT model {selected_model}: {e}", file=sys.stderr)
|
|
return img
|
|
model.to(devices.device_esrgan) # TODO: should probably be device_hat
|
|
return upscale_with_model(
|
|
model,
|
|
img,
|
|
tile_size=opts.ESRGAN_tile, # TODO: should probably be HAT_tile
|
|
tile_overlap=opts.ESRGAN_tile_overlap, # TODO: should probably be HAT_tile_overlap
|
|
)
|
|
|
|
def load_model(self, path: str):
|
|
if not os.path.isfile(path):
|
|
raise FileNotFoundError(f"Model file {path} not found")
|
|
return modelloader.load_spandrel_model(
|
|
path,
|
|
device=devices.device_esrgan, # TODO: should probably be device_hat
|
|
expected_architecture='HAT',
|
|
)
|