Spaces:
Runtime error
Runtime error
Upload app.py with huggingface_hub
Browse files
app.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
API_KEY=os.environ.get('HUGGING_FACE_HUB_TOKEN', None)
|
5 |
+
|
6 |
+
article = """---
|
7 |
+
This space was created using [SD Space Creator](https://huggingface.co/spaces/anzorq/sd-space-creator)."""
|
8 |
+
|
9 |
+
gr.Interface.load(
|
10 |
+
name="models/darkstorm2150/Protogen_x3.4_Official_Release",
|
11 |
+
title="""Protogen X3.4 Official Release""",
|
12 |
+
description="""Demo for <a href="https://huggingface.co/darkstorm2150/Protogen_x3.4_Official_Release">Protogen X3.4 Official Release</a> Stable Diffusion model.""",
|
13 |
+
article=article,
|
14 |
+
api_key=API_KEY,
|
15 |
+
).queue(concurrency_count=20).launch()
|