Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,13 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
gr.Interface.load("models/etweedy/tessa").launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
gr.Interface.load("models/etweedy/tessa").launch()
|
4 |
+
|
5 |
+
import gradio as gr
|
6 |
+
description = "A version of Stable Diffusion v1.5 which knows about my dog, Tessa. This model was fine-tuned using the Dreambooth technique. To generate a picture of Tessa, provide a prompt referring to `<tessa> dog'. Make sure to include the brackets."
|
7 |
+
title = "Dreambooth Tessa Generator"
|
8 |
+
interface = gr.Interface.load("models/etweedy/tessa",
|
9 |
+
description=description,
|
10 |
+
title = title
|
11 |
+
]
|
12 |
+
)
|
13 |
+
interface.launch()
|