Spaces:
Running
Running
File size: 5,298 Bytes
983d072 b9e7f35 983d072 6130d44 b9e7f35 6130d44 b9e7f35 1183d7a 9ce81f8 6130d44 b9e7f35 6130d44 b9e7f35 6130d44 46206ee 6130d44 b9e7f35 6130d44 b9e7f35 6130d44 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
import gradio as gr
import requests
import io
import random
import os
from PIL import Image
API_URL = "https://api-inference.huggingface.co/models/runwayml/stable-diffusion-v1-5"
API_TOKEN = os.getenv("HF_READ_TOKEN") # it is free
headers = {"Authorization": f"Bearer {API_TOKEN}"}
def query(prompt, is_negative=False, steps=1, cfg_scale=6, seed=None):
payload = {
"inputs": prompt,
"is_negative": is_negative,
"steps": steps,
"cfg_scale": cfg_scale,
"seed": seed if seed is not None else random.randint(-1, 2147483647)
}
image_bytes = requests.post(API_URL, headers=headers, json=payload).content
image = Image.open(io.BytesIO(image_bytes))
return image
css = """
/* Improve overall layout and styling */
.gradio-container {
font-family: 'IBM Plex Sans', sans-serif;
max-width: 800px; /* Adjusted max-width for better readability */
margin: auto;
padding: 1.5rem;
background-color: #f4f4f4; /* Added a light background color */
border-radius: 10px; /* Added border radius for a softer look */
}
/* Improve button styling */
.gr-button {
color: #fff;
background: #3498db; /* Changed button color to a shade of blue */
border: 1px solid #2980b9; /* Added a border for contrast */
border-radius: 5px; /* Added border radius for rounded corners */
padding: 10px 20px; /* Increased padding for a better click target */
}
.gr-button:hover {
background: #217dbb; /* Darker shade on hover for visual feedback */
}
/* Improve range input styling */
input[type='range'] {
accent-color: #3498db; /* Adjusted accent color for better visibility */
}
/* Improve gallery styling */
#gallery {
min-height: 300px;
margin: 15px auto; /* Centered the gallery with margin */
border-radius: 10px; /* Added border radius for a softer look */
overflow: hidden; /* Hide overflow for a cleaner appearance */
}
/* Add box shadow to gallery for depth */
#gallery>div {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Add transition to details for smoother underline effect */
.details {
transition: text-decoration 0.3s ease;
}
/* Add styling to advanced options button */
#advanced-btn {
font-size: 1rem;
line-height: 24px;
background-color: #27ae60; /* Green color for contrast */
color: #fff;
border-radius: 10px;
padding: 8px 16px;
cursor: pointer;
}
#advanced-btn:hover {
background-color: #219653; /* Darker green on hover */
}
/* Show advanced options by default */
#advanced-options {
display: block;
margin-bottom: 20px;
}
/* Improve footer styling */
.footer {
margin: 35px auto;
text-align: center;
border-top: 1px solid #e5e5e5;
padding: 15px 0;
}
.footer>p {
font-size: 1rem;
display: inline-block;
padding: 0 10px;
background: #fff;
border-radius: 5px;
margin: 0;
}
/* Improve acknowledgments heading */
.acknowledgments h4 {
margin: 1em 0 0.25em 0;
font-weight: bold;
font-size: 120%; /* Slightly increased font size */
}
/* Add a subtle spin animation to the loading spinner */
.animate-spin {
animation: spin 1s linear infinite;
}
/* Add box shadow to share button container for depth */
#share-btn-container {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden; /* Hide overflow for a cleaner appearance */
}
/* Adjust prompt container styles */
#prompt-container {
gap: 10px; /* Increased gap for better spacing */
}
/* Adjust prompt text input padding */
#prompt-text-input, #negative-prompt-text-input {
padding: 10px;
}
/* Adjust tab item styles */
.tabitem {
border: 1px solid #ddd; /* Added a subtle border */
border-radius: 5px; /* Added border radius for a softer look */
margin: 5px;
padding: 10px;
cursor: pointer;
}
.tabitem:hover {
background-color: #f5f5f5; /* Light background color on hover */
}
"""
with gr.Blocks(css=css, theme="pseudolab/huggingface-korea-theme") as dalle:
gr.HTML(
"""
<div style="text-align: center; margin: 0 auto;">
<div
style="
display: inline-flex;
align-items: center;
gap: 0.8rem;
font-size: 1.75rem;
"
>
<h1 style="font-weight: 900; margin-bottom: 7px;margin-top:5px">
Stable Diffusion v1.5 XL
</h1>
</div>
<p style="margin-bottom: 10px; font-size: 94%; line-height: 23px;">
</p>
</div>
"""
)
with gr.Row():
image_output = gr.Image(type="pil", label="Output Image", elem_id="gallery")
with gr.Column(elem_id="prompt-container"):
text_prompt = gr.Textbox(label="Prompt", placeholder="a cute dog", lines=1, elem_id="prompt-text-input")
text_button = gr.Button("Generate", variant='primary', elem_id="gen-button")
with gr.Accordion("Advanced settings", open=False):
negative_prompt = gr.Textbox(label="Negative Prompt", value="text, blurry, fuzziness", lines=1, elem_id="negative-prompt-text-input")
text_button.click(query, inputs=[text_prompt, negative_prompt], outputs=image_output)
dalle.launch(show_api=False) |