IOPaint/iopaint/model/__init__.py

38 lines
1.0 KiB
Python
Raw Normal View History

2024-01-21 16:25:50 +01:00
from .anytext.anytext_model import AnyText
2023-12-01 03:15:35 +01:00
from .controlnet import ControlNet
from .fcf import FcF
from .instruct_pix2pix import InstructPix2Pix
from .kandinsky import Kandinsky22
from .lama import LaMa
from .ldm import LDM
from .manga import Manga
from .mat import MAT
from .mi_gan import MIGAN
from .opencv2 import OpenCV2
from .paint_by_example import PaintByExample
2023-12-27 15:00:07 +01:00
from .power_paint.power_paint import PowerPaint
2023-12-01 03:15:35 +01:00
from .sd import SD15, SD2, Anything4, RealisticVision14, SD
from .sdxl import SDXL
from .zits import ZITS
models = {
LaMa.name: LaMa,
LDM.name: LDM,
ZITS.name: ZITS,
MAT.name: MAT,
FcF.name: FcF,
OpenCV2.name: OpenCV2,
Manga.name: Manga,
MIGAN.name: MIGAN,
SD15.name: SD15,
Anything4.name: Anything4,
RealisticVision14.name: RealisticVision14,
SD2.name: SD2,
PaintByExample.name: PaintByExample,
InstructPix2Pix.name: InstructPix2Pix,
Kandinsky22.name: Kandinsky22,
SDXL.name: SDXL,
2023-12-27 15:00:07 +01:00
PowerPaint.name: PowerPaint,
2024-01-21 16:25:50 +01:00
AnyText.name: AnyText,
2023-12-01 03:15:35 +01:00
}