etweedy commited on
Commit
1a819e8
·
1 Parent(s): 93ead51

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
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()