Upload app.py with huggingface_hub
Browse files
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/vladocar/3dfood",
|
8 |
+
title="""3dfood""",
|
9 |
+
description="""Demo for <a href="https://huggingface.co/vladocar/3dfood">3dfood</a> Stable Diffusion model.""",
|
10 |
+
article=article,
|
11 |
+
).queue(concurrency_count=20).launch()
|