sorg20 commited on
Commit
317e52c
·
verified ·
1 Parent(s): b652e87

add description and example prompt

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -1,3 +1,9 @@
1
  import gradio as gr
2
 
3
- gr.load("models/sorg20/autotrain-sd-pic", inputs=gr.Textbox(lines=5, label="Input Text: ex: Sungwon in the beach")).launch()
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ title = "All about Sungwon photo version. Generate image of Sungwon"
4
+ examples = ["sungwon eat apple", "sungwon run", "sungwon smile"]
5
+ desc = "This is personalized stable diffuion model.\nMy personal picture is used for fine-tunning SDXL Dreambooth model. Huggingface Autotrain is used."
6
+
7
+ gr.load("models/sorg20/autotrain-sd-pic", inputs=gr.Textbox(lines=5, label="Input Text: ex: Sungwon in the beach"),
8
+ title=title, examples=examples, article=desc).launch()
9
+