@@ -187,164 +187,171 @@ class StarterModel(StarterModelWithoutDependencies):
187
187
# endregion
188
188
# region ControlNet
189
189
StarterModel (
190
- name = "QRCode Monster" ,
190
+ name = "QRCode Monster v2 (SD1.5) " ,
191
191
base = BaseModelType .StableDiffusion1 ,
192
- source = "monster-labs/control_v1p_sd15_qrcode_monster" ,
193
- description = "Controlnet model that generates scannable creative QR codes" ,
192
+ source = "monster-labs/control_v1p_sd15_qrcode_monster::v2" ,
193
+ description = "ControlNet model that generates scannable creative QR codes" ,
194
+ type = ModelType .ControlNet ,
195
+ ),
196
+ StarterModel (
197
+ name = "QRCode Monster (SDXL)" ,
198
+ base = BaseModelType .StableDiffusionXL ,
199
+ source = "monster-labs/control_v1p_sdxl_qrcode_monster" ,
200
+ description = "ControlNet model that generates scannable creative QR codes" ,
194
201
type = ModelType .ControlNet ,
195
202
),
196
203
StarterModel (
197
204
name = "canny" ,
198
205
base = BaseModelType .StableDiffusion1 ,
199
206
source = "lllyasviel/control_v11p_sd15_canny" ,
200
- description = "Controlnet weights trained on sd-1.5 with canny conditioning." ,
207
+ description = "ControlNet weights trained on sd-1.5 with canny conditioning." ,
201
208
type = ModelType .ControlNet ,
202
209
),
203
210
StarterModel (
204
211
name = "inpaint" ,
205
212
base = BaseModelType .StableDiffusion1 ,
206
213
source = "lllyasviel/control_v11p_sd15_inpaint" ,
207
- description = "Controlnet weights trained on sd-1.5 with canny conditioning, inpaint version" ,
214
+ description = "ControlNet weights trained on sd-1.5 with canny conditioning, inpaint version" ,
208
215
type = ModelType .ControlNet ,
209
216
),
210
217
StarterModel (
211
218
name = "mlsd" ,
212
219
base = BaseModelType .StableDiffusion1 ,
213
220
source = "lllyasviel/control_v11p_sd15_mlsd" ,
214
- description = "Controlnet weights trained on sd-1.5 with canny conditioning, MLSD version" ,
221
+ description = "ControlNet weights trained on sd-1.5 with canny conditioning, MLSD version" ,
215
222
type = ModelType .ControlNet ,
216
223
),
217
224
StarterModel (
218
225
name = "depth" ,
219
226
base = BaseModelType .StableDiffusion1 ,
220
227
source = "lllyasviel/control_v11f1p_sd15_depth" ,
221
- description = "Controlnet weights trained on sd-1.5 with depth conditioning" ,
228
+ description = "ControlNet weights trained on sd-1.5 with depth conditioning" ,
222
229
type = ModelType .ControlNet ,
223
230
),
224
231
StarterModel (
225
232
name = "normal_bae" ,
226
233
base = BaseModelType .StableDiffusion1 ,
227
234
source = "lllyasviel/control_v11p_sd15_normalbae" ,
228
- description = "Controlnet weights trained on sd-1.5 with normalbae image conditioning" ,
235
+ description = "ControlNet weights trained on sd-1.5 with normalbae image conditioning" ,
229
236
type = ModelType .ControlNet ,
230
237
),
231
238
StarterModel (
232
239
name = "seg" ,
233
240
base = BaseModelType .StableDiffusion1 ,
234
241
source = "lllyasviel/control_v11p_sd15_seg" ,
235
- description = "Controlnet weights trained on sd-1.5 with seg image conditioning" ,
242
+ description = "ControlNet weights trained on sd-1.5 with seg image conditioning" ,
236
243
type = ModelType .ControlNet ,
237
244
),
238
245
StarterModel (
239
246
name = "lineart" ,
240
247
base = BaseModelType .StableDiffusion1 ,
241
248
source = "lllyasviel/control_v11p_sd15_lineart" ,
242
- description = "Controlnet weights trained on sd-1.5 with lineart image conditioning" ,
249
+ description = "ControlNet weights trained on sd-1.5 with lineart image conditioning" ,
243
250
type = ModelType .ControlNet ,
244
251
),
245
252
StarterModel (
246
253
name = "lineart_anime" ,
247
254
base = BaseModelType .StableDiffusion1 ,
248
255
source = "lllyasviel/control_v11p_sd15s2_lineart_anime" ,
249
- description = "Controlnet weights trained on sd-1.5 with anime image conditioning" ,
256
+ description = "ControlNet weights trained on sd-1.5 with anime image conditioning" ,
250
257
type = ModelType .ControlNet ,
251
258
),
252
259
StarterModel (
253
260
name = "openpose" ,
254
261
base = BaseModelType .StableDiffusion1 ,
255
262
source = "lllyasviel/control_v11p_sd15_openpose" ,
256
- description = "Controlnet weights trained on sd-1.5 with openpose image conditioning" ,
263
+ description = "ControlNet weights trained on sd-1.5 with openpose image conditioning" ,
257
264
type = ModelType .ControlNet ,
258
265
),
259
266
StarterModel (
260
267
name = "scribble" ,
261
268
base = BaseModelType .StableDiffusion1 ,
262
269
source = "lllyasviel/control_v11p_sd15_scribble" ,
263
- description = "Controlnet weights trained on sd-1.5 with scribble image conditioning" ,
270
+ description = "ControlNet weights trained on sd-1.5 with scribble image conditioning" ,
264
271
type = ModelType .ControlNet ,
265
272
),
266
273
StarterModel (
267
274
name = "softedge" ,
268
275
base = BaseModelType .StableDiffusion1 ,
269
276
source = "lllyasviel/control_v11p_sd15_softedge" ,
270
- description = "Controlnet weights trained on sd-1.5 with soft edge conditioning" ,
277
+ description = "ControlNet weights trained on sd-1.5 with soft edge conditioning" ,
271
278
type = ModelType .ControlNet ,
272
279
),
273
280
StarterModel (
274
281
name = "shuffle" ,
275
282
base = BaseModelType .StableDiffusion1 ,
276
283
source = "lllyasviel/control_v11e_sd15_shuffle" ,
277
- description = "Controlnet weights trained on sd-1.5 with shuffle image conditioning" ,
284
+ description = "ControlNet weights trained on sd-1.5 with shuffle image conditioning" ,
278
285
type = ModelType .ControlNet ,
279
286
),
280
287
StarterModel (
281
288
name = "tile" ,
282
289
base = BaseModelType .StableDiffusion1 ,
283
290
source = "lllyasviel/control_v11f1e_sd15_tile" ,
284
- description = "Controlnet weights trained on sd-1.5 with tiled image conditioning" ,
291
+ description = "ControlNet weights trained on sd-1.5 with tiled image conditioning" ,
285
292
type = ModelType .ControlNet ,
286
293
),
287
294
StarterModel (
288
295
name = "ip2p" ,
289
296
base = BaseModelType .StableDiffusion1 ,
290
297
source = "lllyasviel/control_v11e_sd15_ip2p" ,
291
- description = "Controlnet weights trained on sd-1.5 with ip2p conditioning." ,
298
+ description = "ControlNet weights trained on sd-1.5 with ip2p conditioning." ,
292
299
type = ModelType .ControlNet ,
293
300
),
294
301
StarterModel (
295
302
name = "canny-sdxl" ,
296
303
base = BaseModelType .StableDiffusionXL ,
297
- source = "xinsir/controlnet -canny-sdxl-1.0" ,
298
- description = "Controlnet weights trained on sdxl-1.0 with canny conditioning, by Xinsir." ,
304
+ source = "xinsir/controlNet -canny-sdxl-1.0" ,
305
+ description = "ControlNet weights trained on sdxl-1.0 with canny conditioning, by Xinsir." ,
299
306
type = ModelType .ControlNet ,
300
307
),
301
308
StarterModel (
302
309
name = "depth-sdxl" ,
303
310
base = BaseModelType .StableDiffusionXL ,
304
- source = "diffusers/controlnet -depth-sdxl-1.0" ,
305
- description = "Controlnet weights trained on sdxl-1.0 with depth conditioning." ,
311
+ source = "diffusers/controlNet -depth-sdxl-1.0" ,
312
+ description = "ControlNet weights trained on sdxl-1.0 with depth conditioning." ,
306
313
type = ModelType .ControlNet ,
307
314
),
308
315
StarterModel (
309
316
name = "softedge-dexined-sdxl" ,
310
317
base = BaseModelType .StableDiffusionXL ,
311
- source = "SargeZT/controlnet -sd-xl-1.0-softedge-dexined" ,
312
- description = "Controlnet weights trained on sdxl-1.0 with dexined soft edge preprocessing." ,
318
+ source = "SargeZT/controlNet -sd-xl-1.0-softedge-dexined" ,
319
+ description = "ControlNet weights trained on sdxl-1.0 with dexined soft edge preprocessing." ,
313
320
type = ModelType .ControlNet ,
314
321
),
315
322
StarterModel (
316
323
name = "depth-16bit-zoe-sdxl" ,
317
324
base = BaseModelType .StableDiffusionXL ,
318
- source = "SargeZT/controlnet -sd-xl-1.0-depth-16bit-zoe" ,
319
- description = "Controlnet weights trained on sdxl-1.0 with Zoe's preprocessor (16 bits)." ,
325
+ source = "SargeZT/controlNet -sd-xl-1.0-depth-16bit-zoe" ,
326
+ description = "ControlNet weights trained on sdxl-1.0 with Zoe's preprocessor (16 bits)." ,
320
327
type = ModelType .ControlNet ,
321
328
),
322
329
StarterModel (
323
330
name = "depth-zoe-sdxl" ,
324
331
base = BaseModelType .StableDiffusionXL ,
325
- source = "diffusers/controlnet -zoe-depth-sdxl-1.0" ,
326
- description = "Controlnet weights trained on sdxl-1.0 with Zoe's preprocessor (32 bits)." ,
332
+ source = "diffusers/controlNet -zoe-depth-sdxl-1.0" ,
333
+ description = "ControlNet weights trained on sdxl-1.0 with Zoe's preprocessor (32 bits)." ,
327
334
type = ModelType .ControlNet ,
328
335
),
329
336
StarterModel (
330
337
name = "openpose-sdxl" ,
331
338
base = BaseModelType .StableDiffusionXL ,
332
- source = "xinsir/controlnet -openpose-sdxl-1.0" ,
333
- description = "Controlnet weights trained on sdxl-1.0 compatible with the DWPose processor by Xinsir." ,
339
+ source = "xinsir/controlNet -openpose-sdxl-1.0" ,
340
+ description = "ControlNet weights trained on sdxl-1.0 compatible with the DWPose processor by Xinsir." ,
334
341
type = ModelType .ControlNet ,
335
342
),
336
343
StarterModel (
337
344
name = "scribble-sdxl" ,
338
345
base = BaseModelType .StableDiffusionXL ,
339
- source = "xinsir/controlnet -scribble-sdxl-1.0" ,
340
- description = "Controlnet weights trained on sdxl-1.0 compatible with various lineart processors and black/white sketches by Xinsir." ,
346
+ source = "xinsir/controlNet -scribble-sdxl-1.0" ,
347
+ description = "ControlNet weights trained on sdxl-1.0 compatible with various lineart processors and black/white sketches by Xinsir." ,
341
348
type = ModelType .ControlNet ,
342
349
),
343
350
StarterModel (
344
351
name = "tile-sdxl" ,
345
352
base = BaseModelType .StableDiffusionXL ,
346
- source = "xinsir/controlnet -tile-sdxl-1.0" ,
347
- description = "Controlnet weights trained on sdxl-1.0 with tiled image conditioning" ,
353
+ source = "xinsir/controlNet -tile-sdxl-1.0" ,
354
+ description = "ControlNet weights trained on sdxl-1.0 with tiled image conditioning" ,
348
355
type = ModelType .ControlNet ,
349
356
),
350
357
# endregion
0 commit comments