remove sd1.4

This commit is contained in:
Qing
2022-10-20 22:22:35 +08:00
parent 88a3e16ca5
commit 9acc0f8079
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ from lama_cleaner.model.zits import ZITS
from lama_cleaner.model.opencv2 import OpenCV2
from lama_cleaner.schema import Config
models = {"lama": LaMa, "ldm": LDM, "zits": ZITS, "mat": MAT, "fcf": FcF, "sd1.4": SD14, "sd1.5": SD15, "cv2": OpenCV2}
models = {"lama": LaMa, "ldm": LDM, "zits": ZITS, "mat": MAT, "fcf": FcF, "sd1.5": SD15, "cv2": OpenCV2}
class ModelManager: