akhaliq HF staff commited on
Commit
343e651
1 Parent(s): 85ed61c

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ description = """<div>
4
+ <img src="https://i.imgur.com/FEA7N1p.png">
5
+ </div>
6
+ <div><p>
7
+ This is the fine-tuned Stable Diffusion model trained on screenshots from The Clone wars TV series. Use the tokens "Clonewars style" in your prompts for the effect.</p></div>
8
+ """
9
+
10
+ gr.Interface.load("models/TryStar/CloneDiffusion", description=description, examples=[["superman Clonewars style"]]).launch()