Spaces:
Runtime error
Runtime error
File size: 9,338 Bytes
8d4247a 3abc48f 8d4247a 3abc48f 8d4247a 3abc48f 73ee311 c2e1982 73ee311 9b35819 c2e1982 73ee311 b94a3eb 73ee311 b94a3eb c2e1982 b94a3eb c2e1982 b94a3eb 9b35819 f1ed22c c2e1982 73ee311 f88f754 bd1e951 73ee311 bd1e951 73ee311 bd1e951 73ee311 c2e1982 73ee311 c2e1982 73ee311 bd1e951 c2e1982 bd1e951 73ee311 c2e1982 73ee311 c2e1982 73ee311 bd1e951 73ee311 bd1e951 73ee311 bd1e951 73ee311 bd1e951 73ee311 bd1e951 73ee311 bd1e951 73ee311 bd1e951 73ee311 bd1e951 73ee311 bd1e951 73ee311 bd1e951 c2e1982 73ee311 bd1e951 73ee311 bd1e951 c2e1982 bd1e951 c2e1982 bd1e951 73ee311 bd1e951 73ee311 bd1e951 c2e1982 bd1e951 c2e1982 bd1e951 f88f754 85da865 |
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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
import json
import random
import requests
import gradio as gr
import numpy as np
import spaces
import torch
from diffusers import DiffusionPipeline, LCMScheduler
from PIL import Image
import os
# Load the JSON data
with open("sdxl_lora.json", "r") as file:
data = json.load(file)
sdxl_loras_raw = [
{
"image": item["image"],
"title": item["title"],
"repo": item["repo"],
"trigger_word": item["trigger_word"],
"weights": item["weights"],
"is_pivotal": item.get("is_pivotal", False),
"text_embedding_weights": item.get("text_embedding_weights", None),
"likes": item.get("likes", 0),
}
for item in data
]
# Sort the loras by likes
sdxl_loras_raw = sorted(sdxl_loras_raw, key=lambda x: x["likes"], reverse=True)
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
model_id = "stabilityai/stable-diffusion-xl-base-1.0"
pipe = DiffusionPipeline.from_pretrained(model_id, variant="fp16")
pipe.scheduler = LCMScheduler.from_config(pipe.scheduler.config)
pipe.load_lora_weights("jasperai/flash-sdxl", adapter_name="lora")
pipe.to(device=DEVICE, dtype=torch.float16)
MAX_SEED = np.iinfo(np.int32).max
MAX_IMAGE_SIZE = 1024
def update_selection(selected_state: gr.SelectData, gr_sdxl_loras):
lora_id = gr_sdxl_loras[selected_state.index]["repo"]
trigger_word = gr_sdxl_loras[selected_state.index]["trigger_word"]
return lora_id, trigger_word
def get_image(image_data):
if isinstance(image_data, str):
return image_data
if isinstance(image_data, dict):
local_path = image_data.get('local_path')
hf_url = image_data.get('hf_url')
else:
print(f"Unexpected image_data format: {type(image_data)}")
return None
if local_path and os.path.exists(local_path):
try:
Image.open(local_path).verify()
return local_path
except Exception as e:
print(f"Error loading local image {local_path}: {e}")
if hf_url:
try:
response = requests.get(hf_url)
if response.status_code == 200:
img = Image.open(requests.get(hf_url, stream=True).raw)
img.verify()
img.save(local_path)
return local_path
else:
print(f"Failed to fetch image from URL {hf_url}. Status code: {response.status_code}")
except Exception as e:
print(f"Error loading image from URL {hf_url}: {e}")
print(f"Failed to load image for {image_data}")
return None
@spaces.GPU
def infer(
pre_prompt,
prompt,
seed,
randomize_seed,
num_inference_steps,
negative_prompt,
guidance_scale,
user_lora_selector,
user_lora_weight,
progress=gr.Progress(track_tqdm=True),
):
flash_sdxl_id = "jasperai/flash-sdxl"
new_adapter_id = user_lora_selector.replace("/", "_")
loaded_adapters = pipe.get_list_adapters()
if new_adapter_id not in loaded_adapters["unet"]:
gr.Info("Swapping LoRA")
pipe.unload_lora_weights()
pipe.load_lora_weights(flash_sdxl_id, adapter_name="lora")
pipe.load_lora_weights(user_lora_selector, adapter_name=new_adapter_id)
pipe.set_adapters(["lora", new_adapter_id], adapter_weights=[1.0, user_lora_weight])
gr.Info("LoRA setup done")
if randomize_seed:
seed = random.randint(0, MAX_SEED)
generator = torch.Generator().manual_seed(seed)
if pre_prompt != "":
prompt = f"{pre_prompt} {prompt}"
image = pipe(
prompt=prompt,
negative_prompt=negative_prompt,
guidance_scale=guidance_scale,
num_inference_steps=num_inference_steps,
generator=generator,
).images[0]
return image
css = """
body {
background-color: #1a1a1a;
color: #ffffff;
}
.container {
max-width: 900px;
margin: auto;
padding: 20px;
}
h1, h2 {
color: #4CAF50;
text-align: center;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.gallery img {
margin: 10px;
border-radius: 10px;
transition: transform 0.3s ease;
}
.gallery img:hover {
transform: scale(1.05);
}
.gradio-slider input[type="range"] {
background-color: #4CAF50;
}
.gradio-button {
background-color: #4CAF50 !important;
}
"""
with gr.Blocks(css=css) as demo:
gr.Markdown(
"""
# β‘ FlashDiffusion: FlashLoRA β‘
This is an interactive demo of [Flash Diffusion](https://gojasper.github.io/flash-diffusion-project/) **on top of** existing LoRAs.
The distillation method proposed in [Flash Diffusion: Accelerating Any Conditional Diffusion Model for Few Steps Image Generation](http://arxiv.org/abs/2406.02347) *by ClΓ©ment Chadebec, Onur Tasar, Eyal Benaroche and Benjamin Aubin* from Jasper Research.
The LoRAs can be added **without** any retraining for similar results in most cases. Feel free to tweak the parameters and use your own LoRAs by giving a look at the [Github Repo](https://github.com/gojasper/flash-diffusion)
"""
)
gr.Markdown(
"If you enjoy the space, please also promote *open-source* by giving a β to our repo [![GitHub Stars](https://img.shields.io/github/stars/gojasper/flash-diffusion?style=social)](https://github.com/gojasper/flash-diffusion)"
)
gr_sdxl_loras = gr.State(value=sdxl_loras_raw)
gr_lora_id = gr.State(value="")
with gr.Row():
with gr.Column(scale=2):
gallery = gr.Gallery(
value=[(get_image(item["image"]), item["title"]) for item in sdxl_loras_raw if get_image(item["image"]) is not None],
label="SDXL LoRA Gallery",
show_label=False,
elem_id="gallery",
columns=3,
height=600,
)
user_lora_selector = gr.Textbox(
label="Current Selected LoRA",
max_lines=1,
interactive=False,
)
user_lora_weight = gr.Slider(
label="Selected LoRA Weight",
minimum=0.5,
maximum=3,
step=0.1,
value=1,
)
with gr.Column(scale=3):
prompt = gr.Textbox(
label="Prompt",
placeholder="Enter your prompt",
lines=3,
)
with gr.Row():
run_button = gr.Button("Run", variant="primary")
clear_button = gr.Button("Clear")
result = gr.Image(label="Result", height=512)
with gr.Accordion("Advanced Settings", open=False):
pre_prompt = gr.Textbox(
label="Pre-Prompt",
placeholder="Pre Prompt from the LoRA config",
lines=2,
)
with gr.Row():
seed = gr.Slider(
label="Seed",
minimum=0,
maximum=MAX_SEED,
step=1,
value=0,
)
randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
num_inference_steps = gr.Slider(
label="Number of inference steps",
minimum=4,
maximum=8,
step=1,
value=4,
)
guidance_scale = gr.Slider(
label="Guidance Scale",
minimum=1,
maximum=6,
step=0.5,
value=1,
)
hint_negative = gr.Markdown(
"""π‘ _Hint : Negative Prompt will only work with Guidance > 1 but the model was
trained to be used with guidance = 1 (ie. without guidance).
Can degrade the results, use cautiously._"""
)
negative_prompt = gr.Textbox(
label="Negative Prompt",
placeholder="Enter a negative Prompt",
lines=2,
)
gr.on(
[
run_button.click,
seed.change,
randomize_seed.change,
prompt.submit,
negative_prompt.change,
negative_prompt.submit,
guidance_scale.change,
],
fn=infer,
inputs=[
pre_prompt,
prompt,
seed,
randomize_seed,
num_inference_steps,
negative_prompt,
guidance_scale,
user_lora_selector,
user_lora_weight,
],
outputs=[result],
)
clear_button.click(lambda: "", outputs=[prompt, result])
gallery.select(
fn=update_selection,
inputs=[gr_sdxl_loras],
outputs=[user_lora_selector, pre_prompt],
)
gr.Markdown("**Disclaimer:**")
gr.Markdown(
"This demo is only for research purpose. Users are solely responsible for any content they create, and it is their obligation to ensure that it adheres to appropriate and ethical standards."
)
demo.queue().launch() |