Spaces:
Runtime error
Runtime error
Create app.py
Browse files
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()
|