Norod78 commited on
Commit
95811da
1 Parent(s): 8dbadac

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ article = """---
4
+ This space was created using [SD Space Creator](https://huggingface.co/spaces/anzorq/sd-space-creator)."""
5
+
6
+ gr.Interface.load(
7
+ name="models/Norod78/sd2-simpsons-blip",
8
+ title="""SDv2 Simpsons""",
9
+ description="""Demo for <a href="https://huggingface.co/Norod78/sd2-simpsons-blip">SD2 Simpsons BLIP</a> Stable Diffusion 2, fine-tuned model.""",
10
+ article=article,
11
+ ).queue(concurrency_count=20).launch()