__init__.py 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. from .anytext.anytext_model import AnyText
  2. from .controlnet import ControlNet
  3. from .fcf import FcF
  4. from .instruct_pix2pix import InstructPix2Pix
  5. from .kandinsky import Kandinsky22
  6. from .lama import AnimeLaMa, LaMa
  7. from .ldm import LDM
  8. from .manga import Manga
  9. from .mat import MAT
  10. from .mi_gan import MIGAN
  11. from .opencv2 import OpenCV2
  12. from .paint_by_example import PaintByExample
  13. from .power_paint.power_paint import PowerPaint
  14. from .sd import SD, SD2, SD15, Anything4, RealisticVision14
  15. from .sdxl import SDXL
  16. from .zits import ZITS
  17. models = {
  18. LaMa.name: LaMa,
  19. AnimeLaMa.name: AnimeLaMa,
  20. LDM.name: LDM,
  21. ZITS.name: ZITS,
  22. MAT.name: MAT,
  23. FcF.name: FcF,
  24. OpenCV2.name: OpenCV2,
  25. Manga.name: Manga,
  26. MIGAN.name: MIGAN,
  27. SD15.name: SD15,
  28. Anything4.name: Anything4,
  29. RealisticVision14.name: RealisticVision14,
  30. SD2.name: SD2,
  31. PaintByExample.name: PaintByExample,
  32. InstructPix2Pix.name: InstructPix2Pix,
  33. Kandinsky22.name: Kandinsky22,
  34. SDXL.name: SDXL,
  35. PowerPaint.name: PowerPaint,
  36. AnyText.name: AnyText,
  37. }