vinesmsuic commited on
Commit
8340e5c
1 Parent(s): 691dfed

adding Kolors

Browse files
model/model_registry.py CHANGED
@@ -136,6 +136,13 @@ register_model_info(
136
  "HunyuanDiT is a Powerful Multi-Resolution Diffusion Transformer with Fine-Grained Chinese Understanding",
137
  )
138
 
 
 
 
 
 
 
 
139
  # regist image edition models
140
  register_model_info(
141
  ["imagenhub_CycleDiffusion_edition"],
 
136
  "HunyuanDiT is a Powerful Multi-Resolution Diffusion Transformer with Fine-Grained Chinese Understanding",
137
  )
138
 
139
+ register_model_info(
140
+ ["imagenhub_Kolors_generation"],
141
+ "Kolors",
142
+ "https://huggingface.co/Kwai-Kolors/Kolors",
143
+ "Kolors is a large-scale text-to-image generation model based on latent diffusion",
144
+ )
145
+
146
  # regist image edition models
147
  register_model_info(
148
  ["imagenhub_CycleDiffusion_edition"],
model/models/__init__.py CHANGED
@@ -9,7 +9,7 @@ from .videogenhub_models import load_videogenhub_model
9
  # 'playground_PlayGroundV2_generation', 'playground_PlayGroundV2.5_generation']
10
  IMAGE_GENERATION_MODELS = ['imagenhub_SDXLTurbo_generation','imagenhub_SDXL_generation', 'imagenhub_PixArtAlpha_generation', 'imagenhub_PixArtSigma_generation',
11
  'imagenhub_OpenJourney_generation','imagenhub_SDXLLightning_generation', 'imagenhub_StableCascade_generation', 'imagenhub_HunyuanDiT_generation',
12
- 'playground_PlayGroundV2.5_generation', 'imagenhub_SD3_generation'] # 'playground_PlayGroundV2_generation'
13
  IMAGE_EDITION_MODELS = ['imagenhub_CycleDiffusion_edition', 'imagenhub_Pix2PixZero_edition', 'imagenhub_Prompt2prompt_edition',
14
  'imagenhub_SDEdit_edition', 'imagenhub_InstructPix2Pix_edition',
15
  'imagenhub_MagicBrush_edition', 'imagenhub_PNP_edition',
 
9
  # 'playground_PlayGroundV2_generation', 'playground_PlayGroundV2.5_generation']
10
  IMAGE_GENERATION_MODELS = ['imagenhub_SDXLTurbo_generation','imagenhub_SDXL_generation', 'imagenhub_PixArtAlpha_generation', 'imagenhub_PixArtSigma_generation',
11
  'imagenhub_OpenJourney_generation','imagenhub_SDXLLightning_generation', 'imagenhub_StableCascade_generation', 'imagenhub_HunyuanDiT_generation',
12
+ 'playground_PlayGroundV2.5_generation', 'imagenhub_Kolors_generation', 'imagenhub_SD3_generation'] # 'playground_PlayGroundV2_generation'
13
  IMAGE_EDITION_MODELS = ['imagenhub_CycleDiffusion_edition', 'imagenhub_Pix2PixZero_edition', 'imagenhub_Prompt2prompt_edition',
14
  'imagenhub_SDEdit_edition', 'imagenhub_InstructPix2Pix_edition',
15
  'imagenhub_MagicBrush_edition', 'imagenhub_PNP_edition',