Spaces:
Runtime error
Runtime error
add description and example prompt
Browse files
app.py
CHANGED
@@ -1,3 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
|