bguisard commited on
Commit
dee90a9
1 Parent(s): ca3f0cd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -12
app.py CHANGED
@@ -67,24 +67,22 @@ app = gr.Interface(
67
  "[Stable Diffusion Nano](hf.co/bguisard/stable-diffusion-nano-2-1) allows "
68
  "for fast prototyping of diffusion models, enabling quick experimentation "
69
  "with easily available hardware."
70
- "It performs reasonably well on several tasks, but it struggles "
71
  "with small details such as faces."
72
  "\n\nprompt:\nA watercolor painting of an otter"
73
- "\n\n![images_0)](hf.co/bguisard/stable-diffusion-nano-2-1/raw/main/images_0.png)"
 
74
  "\n\nprompt:\nMarvel MCU deadpool, red mask, red shirt, red gloves, black shoulders, black elbow pads, black legs, gold buckle, black belt, black mask, white eyes, black boots, fuji low light color 35mm film, downtown Osaka alley at night out of focus in background, neon lights"
75
- "\n\n![images_1)](hf.co/bguisard/stable-diffusion-nano-2-1/raw/main/images_1.png)"
 
76
  ),
77
  css="h1 { text-align: center }",
78
  # Some examples were copied from hf.co/spaces/stabilityai/stable-diffusion
79
- examples=[
80
- ["A watercolor painting of a bird", 30, 0],
81
- [
82
- "A small cabin on top of a snowy mountain in the style of Disney, artstation",
83
- 30,
84
- 232190380,
85
- ],
86
- ["A mecha robot in a favela in expressionist style", 30, 827198341273],
87
- ],
88
  )
89
 
90
  app.launch()
 
67
  "[Stable Diffusion Nano](hf.co/bguisard/stable-diffusion-nano-2-1) allows "
68
  "for fast prototyping of diffusion models, enabling quick experimentation "
69
  "with easily available hardware."
70
+ " It performs reasonably well on several tasks, but it struggles "
71
  "with small details such as faces."
72
  "\n\nprompt:\nA watercolor painting of an otter"
73
+ "\n\n"
74
+ "![image_0](hf.co/bguisard/stable-diffusion-nano-2-1/raw/main/images_0.png)"
75
  "\n\nprompt:\nMarvel MCU deadpool, red mask, red shirt, red gloves, black shoulders, black elbow pads, black legs, gold buckle, black belt, black mask, white eyes, black boots, fuji low light color 35mm film, downtown Osaka alley at night out of focus in background, neon lights"
76
+ "\n\n"
77
+ "![image_1](hf.co/bguisard/stable-diffusion-nano-2-1/raw/main/images_1.png)"
78
  ),
79
  css="h1 { text-align: center }",
80
  # Some examples were copied from hf.co/spaces/stabilityai/stable-diffusion
81
+ # examples=[
82
+ # ["A watercolor painting of a bird", 30, 0],
83
+ # ["A small cabin on top of a snowy mountain in the style of Disney, artstation", 30, 232190380],
84
+ # ["A mecha robot in a favela in expressionist style", 30, 827198341273],
85
+ # ],
 
 
 
 
86
  )
87
 
88
  app.launch()