AlStable commited on
Commit
71f6d12
·
1 Parent(s): bca5f82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -8,12 +8,10 @@ class Model:
8
 
9
  models = [
10
  Model("Marvel","models/ItsJayQz/Marvel_WhatIf_Diffusion", "whatif style"),
11
- Model("Cyberpunk Anime Diffusion", "models/DGSpitzer/Cyberpunk-Anime-Diffusion", "dgs illustration style"),
12
  Model("Portrait plus", "models/wavymulder/portraitplus", "portrait+ style"),
13
  Model("CF25", "models/gsdf/Counterfeit-V2.5", "anime style"),
14
  Model("vintedois", "models/22h/vintedois-diffusion-v0-1", "vintedois style"),
15
  Model("dreamlike", "models/dreamlike-art/dreamlike-diffusion-1.0","dreamlike style"),
16
- #Model("Orange Mix","models/WarriorMama777/OrangeMixs", "OrangeMixs style"),
17
  Model("GTA5","models/ItsJayQz/GTA5_Artwork_Diffusion", "GTA5 style")
18
  ]
19
 
@@ -40,6 +38,9 @@ sandbox = gradio.Interface(fn=process1,
40
  title='Text to Image',
41
  examples=[["Portrait close up, Elvis Presley, concert hall in the background", "GTA5"],
42
  ["Marvel Blackwidow portrait close up. building city background", "Marvel"],
 
 
 
43
  ["A white rabbit wizard, Hogwart University, Castle in the background", "dreamlike"]])
44
 
45
  sandbox.queue(concurrency_count=20).launch()
 
8
 
9
  models = [
10
  Model("Marvel","models/ItsJayQz/Marvel_WhatIf_Diffusion", "whatif style"),
 
11
  Model("Portrait plus", "models/wavymulder/portraitplus", "portrait+ style"),
12
  Model("CF25", "models/gsdf/Counterfeit-V2.5", "anime style"),
13
  Model("vintedois", "models/22h/vintedois-diffusion-v0-1", "vintedois style"),
14
  Model("dreamlike", "models/dreamlike-art/dreamlike-diffusion-1.0","dreamlike style"),
 
15
  Model("GTA5","models/ItsJayQz/GTA5_Artwork_Diffusion", "GTA5 style")
16
  ]
17
 
 
38
  title='Text to Image',
39
  examples=[["Portrait close up, Elvis Presley, concert hall in the background", "GTA5"],
40
  ["Marvel Blackwidow portrait close up. building city background", "Marvel"],
41
+ ["Benedict Cumberbatch wizard of black magic, Hogwart University, castle tower background", "vintedois"],
42
+ ["Viggo Mortensen Gryffindor wizard, Hogwart University, castle tower background", "Portrait plus"],
43
+ ["Male pirate, eye patch, black hat, sailing boat, ocean in background", "CF25"],
44
  ["A white rabbit wizard, Hogwart University, Castle in the background", "dreamlike"]])
45
 
46
  sandbox.queue(concurrency_count=20).launch()