skyBluezz commited on
Commit
0d5bf6e
·
verified ·
1 Parent(s): 0dd8e54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -286,7 +286,7 @@ class ControlNetDepthDesignModelMulti:
286
 
287
 
288
  def create_demo(model):
289
- gr.Markdown("### Stable Design demo")
290
  with gr.Row():
291
  with gr.Column():
292
  input_image = gr.Image(label="Input Image", type='pil', elem_id='img-display-input')
@@ -353,9 +353,7 @@ def create_demo(model):
353
  return out_img, bboxes.tolist()
354
 
355
  submit.click(on_submit, inputs=[input_image, input_text, num_steps, guidance_scale, seed, strength, detr_confidence_threshold, a_prompt, n_prompt, img_size], outputs=[design_image, bboxes])
356
- examples = gr.Examples(examples=[["imgs/bedroom_1.jpg", "An elegantly appointed bedroom in the Art Deco style, featuring a grand king-size bed with geometric bedding, a luxurious velvet armchair, and a mirrored nightstand that reflects the room's opulence. Art Deco-inspired artwork adds a touch of glamour"], ["imgs/bedroom_2.jpg", "A bedroom that exudes French country charm with a soft upholstered bed, walls adorned with floral wallpaper, and a vintage wooden wardrobe. A crystal chandelier casts a warm, inviting glow over the space"], ["imgs/dinning_room_1.jpg", "A cozy dining room that captures the essence of rustic charm with a solid wooden farmhouse table at its core, surrounded by an eclectic mix of mismatched chairs. An antique sideboard serves as a statement piece, and the ambiance is warmly lit by a series of quaint Edison bulbs dangling from the ceiling"], ["imgs/dinning_room_3.jpg", "A dining room that epitomizes contemporary elegance, anchored by a sleek, minimalist dining table paired with stylish modern chairs. Artistic lighting fixtures create a focal point above, while the surrounding minimalist decor ensures the space feels open, airy, and utterly modern"], ["imgs/image_1.jpg", "A glamorous master bedroom in Hollywood Regency style, boasting a plush tufted headboard, mirrored furniture reflecting elegance, luxurious fabrics in rich textures, and opulent gold accents for a touch of luxury."], ["imgs/image_2.jpg", "A vibrant living room with a tropical theme, complete with comfortable rattan furniture, large leafy plants bringing the outdoors in, bright cushions adding pops of color, and bamboo blinds for natural light control."], ["imgs/living_room_1.jpg", "A stylish living room embracing mid-century modern aesthetics, featuring a vintage teak coffee table at its center, complemented by a classic sunburst clock on the wall and a cozy shag rug underfoot, creating a warm and inviting atmosphere"]],
357
- inputs=[input_image, input_text], cache_examples=False)
358
-
359
 
360
  controlnet_depth= ControlNetModel.from_pretrained(
361
  "controlnet_depth", torch_dtype=dtype, use_safetensors=True)
 
286
 
287
 
288
  def create_demo(model):
289
+ gr.Markdown("### demo")
290
  with gr.Row():
291
  with gr.Column():
292
  input_image = gr.Image(label="Input Image", type='pil', elem_id='img-display-input')
 
353
  return out_img, bboxes.tolist()
354
 
355
  submit.click(on_submit, inputs=[input_image, input_text, num_steps, guidance_scale, seed, strength, detr_confidence_threshold, a_prompt, n_prompt, img_size], outputs=[design_image, bboxes])
356
+
 
 
357
 
358
  controlnet_depth= ControlNetModel.from_pretrained(
359
  "controlnet_depth", torch_dtype=dtype, use_safetensors=True)