Instructions to use AiArtLab/sdxs-1b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use AiArtLab/sdxs-1b with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("AiArtLab/sdxs-1b", dtype=torch.bfloat16, device_map="cuda") prompt = "sdxs-1b" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
File size: 17,570 Bytes
aa1e121 845c08d aa1e121 77f9f15 aa1e121 7b12282 77f9f15 7b12282 aa1e121 efa99e4 77f9f15 ae9c446 77f9f15 ae9c446 77f9f15 5b9bbdb 77f9f15 5b9bbdb 77f9f15 ae9c446 77f9f15 5b9bbdb 77f9f15 445fd7f 77f9f15 5b9bbdb 77f9f15 33e4060 77f9f15 a4e4f02 77f9f15 a4e4f02 77f9f15 a4e4f02 77f9f15 a4e4f02 77f9f15 a4e4f02 77f9f15 a4e4f02 77f9f15 fee5085 77f9f15 fee5085 77f9f15 aa1e121 77f9f15 aa1e121 77f9f15 aa1e121 77f9f15 aa1e121 77f9f15 aa1e121 77f9f15 aa1e121 77f9f15 5b9bbdb aa1e121 445fd7f 5b9bbdb aa1e121 0bec123 aa1e121 9dbef7d da395bc 0bec123 da395bc 77f9f15 0381357 77f9f15 0381357 77f9f15 0381357 77f9f15 da395bc 77f9f15 e189156 da395bc 77f9f15 445fd7f 77f9f15 da395bc 77f9f15 741b3a0 77f9f15 da395bc aa1e121 77f9f15 aa1e121 da395bc 77f9f15 aa1e121 da395bc aa1e121 da395bc 77f9f15 aa1e121 0381357 77f9f15 da395bc efa99e4 f9cc797 da395bc ae9c446 da395bc aa1e121 da395bc ae9c446 da395bc aa1e121 77f9f15 | 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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 | import torch
import numpy as np
from PIL import Image
from typing import List, Union, Optional, Tuple
from dataclasses import dataclass
from diffusers import DiffusionPipeline
from diffusers.utils import BaseOutput
from tqdm import tqdm
@dataclass
class SdxsPipelineOutput(BaseOutput):
images: Union[List[Image.Image], np.ndarray]
prompt: Optional[Union[str, List[str]]] = None
class SdxsPipeline(DiffusionPipeline):
MAX_TEXT_TOKENS = 248
def __init__(self, vae, text_encoder, processor, tokenizer, unet, scheduler):
super().__init__()
self.register_modules(
vae=vae,
text_encoder=text_encoder,
processor=processor,
tokenizer=tokenizer,
unet=unet,
scheduler=scheduler
)
self.vae_scale_factor = 2 ** (len(self.vae.config.block_out_channels) - 1)
mean = getattr(self.vae.config, "latents_mean", None)
std = getattr(self.vae.config, "latents_std", None)
if mean is not None and std is not None:
self.vae_latents_std = torch.tensor(std, device=self.unet.device, dtype=self.unet.dtype).view(1, len(std), 1, 1)
self.vae_latents_mean = torch.tensor(mean, device=self.unet.device, dtype=self.unet.dtype).view(1, len(mean), 1, 1)
@staticmethod
def _pad_tensor_to_length(tensor: torch.Tensor, target_len: int, dim: int = 1, pad_value: float = 0) -> torch.Tensor:
current_len = tensor.shape[dim]
if current_len >= target_len:
return tensor
pad_size = target_len - current_len
if tensor.dim() == 3:
padding = (0, 0, 0, pad_size, 0, 0)
elif tensor.dim() == 2:
padding = (0, pad_size, 0, 0)
else:
raise ValueError(f"Unsupported tensor dimension: {tensor.dim()}")
return torch.nn.functional.pad(tensor, padding, value=pad_value)
@torch.no_grad()
def refine_prompts(
self,
prompts: Union[str, List[str]],
system_prompt: Optional[str] = None,
temperature: float = 0.7
) -> List[str]:
"""
Refines a list of prompts using the Text Encoder (LLM).
Args:
prompts: Single prompt string or list of prompts.
system_prompt: Custom instruction for the LLM. If None, uses default aesthetic enhancer.
temperature: Sampling temperature for generation.
Returns:
List of refined prompts.
"""
device = self.device
# Default system prompt if none provided
if system_prompt is None:
system_prompt = (
"You are a skilled text-to-image prompt engineer whose sole function is to transform "
"the user's input into an aesthetically optimized, detailed, and visually descriptive two-sentence output. "
"**The primary subject (e.g., 'girl', 'dog', 'house') MUST be the main focus of the revised prompt "
"and MUST be described in rich detail within the first sentence.** "
"Output **only** the final revised prompt, with absolutely no commentary. "
"Don't use cliches like warm, soft, vibrant, wildflowers. Be creative. User input prompt: "
)
pad_id = getattr(self.text_encoder.config, "pad_token_id", None) or \
getattr(self.text_encoder.config, "eos_token_id", None)
prompts_list = [prompts] if isinstance(prompts, str) else prompts
refined_list = []
for p in prompts_list:
# Prepend system prompt to user input
full_text = system_prompt + p
messages = [{"role": "user", "content": [{"type": "text", "text": full_text}]}]
inputs = self.tokenizer.apply_chat_template(
messages, tokenize=True, add_generation_prompt=True, return_dict=True, return_tensors="pt"
).to(device)
generated_ids = self.text_encoder.generate(
**inputs,
max_new_tokens=self.MAX_TEXT_TOKENS,
do_sample=True,
temperature=temperature,
pad_token_id=pad_id
)
generated_ids_trimmed = [
out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
output_text = self.tokenizer.batch_decode(
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
)
refined_list.append(output_text[0])
return refined_list
@torch.no_grad()
def encode_text(self, text: Union[str, List[str]]) -> Tuple[torch.Tensor, torch.Tensor]:
device = self.device
dtype = self.unet.dtype
if text is None: text = ""
if isinstance(text, str): text = [text]
formatted_prompts = []
for t in text:
messages = [{"role": "user", "content": [{"type": "text", "text": t}]}]
formatted_prompts.append(self.tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False))
toks = self.tokenizer(formatted_prompts, padding="max_length", max_length=self.MAX_TEXT_TOKENS, truncation=True, return_tensors="pt").to(device)
outputs = self.text_encoder(input_ids=toks.input_ids, attention_mask=toks.attention_mask, output_hidden_states=True)
last_hidden = outputs.hidden_states[-2]
return last_hidden.to(dtype=dtype), toks.attention_mask.to(dtype=torch.int64)
@torch.no_grad()
def encode_image(self, image: Union[Image.Image, str, List[Union[Image.Image, str]]]) -> Tuple[torch.Tensor, torch.Tensor]:
device = self.device
dtype = self.unet.dtype
if isinstance(image, (str, Image.Image)): image = [image]
batch_size = len(image)
all_messages = [[{"role": "user", "content": [{"type": "image", "image": img}]}] for img in image]
formatted_prompts = [self.processor.apply_chat_template(msgs, tokenize=False, add_generation_prompt=True) for msgs in all_messages]
inputs = self.processor(text=formatted_prompts, images=image, return_tensors="pt", padding=True, truncation=False).to(device)
outputs = self.text_encoder(**inputs, output_hidden_states=True)
last_hidden = outputs.hidden_states[-2]
seq_lens = inputs.attention_mask.sum(dim=1) - 1
pooled = last_hidden[torch.arange(batch_size), seq_lens.clamp(min=0)]
final_embeddings = torch.cat([pooled.unsqueeze(1), last_hidden], dim=1)
final_mask = torch.cat([torch.ones((batch_size, 1), device=device, dtype=inputs.attention_mask.dtype), inputs.attention_mask], dim=1)
return final_embeddings.to(dtype=dtype), final_mask.to(dtype=torch.int64)
@torch.no_grad()
def encode_text_and_image_naive(self, text: Union[str, List[str]], image: Optional[Union[Image.Image, List[Image.Image], str, List[str]]] = None, scale = 0.5) -> Tuple[torch.Tensor, torch.Tensor]:
# 1. Получаем текстовый эмбеддинг
text_embeds, text_mask = self.encode_text(text)
if image is not None:
if isinstance(image, (str, Image.Image)):
image = [image]
# Если картинка одна, а текстов много - размножаем картинку
if len(image) == 1 and text_embeds.shape[0] > 1:
image = image * text_embeds.shape[0]
# --- НАЧАЛО ВСТАВЛЕННОГО КОДА (Логика из encode_image) ---
device = self.device
dtype = self.unet.dtype
batch_size = len(image)
all_messages = [[{"role": "user", "content": [{"type": "image", "image": img}]}] for img in image]
formatted_prompts = [self.processor.apply_chat_template(msgs, tokenize=False, add_generation_prompt=True) for msgs in all_messages]
inputs = self.processor(text=formatted_prompts, images=image, return_tensors="pt", padding=True, truncation=False).to(device)
outputs = self.text_encoder(**inputs, output_hidden_states=True)
# Берем нужный хайден (-2 слой)
img_hidden_states = outputs.hidden_states[-2]
# Берем маску attention из процессора
img_mask = inputs.attention_mask
# --- КОНЕЦ ВСТАВЛЕННОГО КОДА ---
# Применяем масштабирование
if scale != 1.0:
img_hidden_states = img_hidden_states * scale
# Приводим маску и типы данных к соответствию с текстом
img_mask = img_mask.to(text_mask.dtype)
img_hidden_states = img_hidden_states.to(dtype=dtype)
# Объединяем текст и последовательность токенов картинки
final_embeds = torch.cat([text_embeds, img_hidden_states], dim=1)
final_mask = torch.cat([text_mask, img_mask], dim=1)
return final_embeds, final_mask
return text_embeds, text_mask
@torch.no_grad()
def image_upscale(
self,
image: Union[str, Image.Image, List[Union[str, Image.Image]]],
batch_size: int = 1
) -> List[Image.Image]:
"""
Upscales images using asymmetric VAE (x2).
Uses smart batching: processes in parallel if sizes match, else falls back to sequential.
"""
images = [image] if isinstance(image, (str, Image.Image)) else image
# 1. Preprocess: Load, Handle Alpha, Pad to %8, Normalize
batch_data = []
for img in images:
if isinstance(img, str): img = Image.open(img)
if img.mode == "RGBA":
img = Image.alpha_composite(Image.new("RGBA", img.size, (255, 255, 255)), img)
img = img.convert("RGB")
w, h = img.size
pw, ph = (8 - w % 8) % 8, (8 - h % 8) % 8
if pw or ph:
padded = Image.new("RGB", (w + pw, h + ph), (255, 255, 255))
padded.paste(img)
img = padded
t = torch.from_numpy(np.array(img).astype(np.float32) / 127.5 - 1.0).permute(2, 0, 1)
batch_data.append((t.to(self.device, torch.float16), w, h))
# 2. Determine Execution Strategy
# If all shapes are identical, use batch_size. Else fallback to 1.
unique_shapes = {t.shape for t, _, _ in batch_data}
step = batch_size if len(unique_shapes) == 1 else 1
output_images = []
# 3. Process Batches
for i in range(0, len(batch_data), step):
chunk = batch_data[i : i + step]
# Stack tensors [B, C, H, W]
tensors = torch.stack([c[0] for c in chunk])
# Encode -> Decode (using mean for deterministic upscale)
latents = self.vae.encode(tensors).latent_dist.mean
latents = latents * self.vae_latents_std.to(latents) + self.vae_latents_mean.to(latents)
decoded = self.vae.decode(latents.to(self.vae.dtype))[0]
# 4. Post-process: Denormalize and Crop
decoded = (decoded.clamp(-1, 1) + 1) / 2
for j, tensor in enumerate(decoded):
w, h = chunk[j][1], chunk[j][2] # Original sizes
# Crop to exact 2x
arr = tensor.cpu().permute(1, 2, 0).float().numpy()
arr = arr[:h * 2, :w * 2]
output_images.append(Image.fromarray((arr * 255).astype("uint8")))
return output_images
@torch.no_grad()
def __call__(
self,
prompt: Optional[Union[str, List[str]]] = None,
negative_prompt: Optional[Union[str, List[str]]] = None,
prompt_embeds: Optional[torch.Tensor] = None,
negative_prompt_embeds: Optional[torch.Tensor] = None,
prompt_attention_mask: Optional[torch.Tensor] = None,
negative_prompt_attention_mask: Optional[torch.Tensor] = None,
latents: Optional[torch.Tensor] = None,
height: int = 1408,
width: int = 1024,
num_inference_steps: int = 40,
guidance_scale: float = 5.0,
generator: Optional[torch.Generator] = None,
seed: Optional[int] = None,
output_type: str = "pil",
return_dict: bool = True,
**kwargs,
):
device = self.device
dtype = self.unet.dtype
if generator is None and seed is not None:
generator = torch.Generator(device=device).manual_seed(seed)
do_classifier_free_guidance = guidance_scale > 1.0
# 1. Encode Positive
if prompt_embeds is None:
if prompt is None: raise ValueError("`prompt` or `prompt_embeds` required.")
prompt_embeds, prompt_attention_mask = self.encode_text(prompt)
prompt_embeds = prompt_embeds.to(device=device, dtype=dtype)
prompt_attention_mask = prompt_attention_mask.to(device=device, dtype=torch.int64)
batch_size = prompt_embeds.shape[0]
# 2. Encode Negative (only if CFG is enabled)
if do_classifier_free_guidance:
if negative_prompt_embeds is None:
neg_text = negative_prompt if negative_prompt is not None else ("" if isinstance(prompt, str) else [""] * len(prompt))
negative_prompt_embeds, negative_prompt_attention_mask = self.encode_text(neg_text)
negative_prompt_embeds = negative_prompt_embeds.to(device=device, dtype=dtype)
negative_prompt_attention_mask = negative_prompt_attention_mask.to(device=device, dtype=torch.int64)
# Batch size matching
if negative_prompt_embeds.shape[0] != batch_size:
negative_prompt_embeds = negative_prompt_embeds.repeat(batch_size, 1, 1)
negative_prompt_attention_mask = negative_prompt_attention_mask.repeat(batch_size, 1)
# 3. Align Length (Padding) for Concat
max_len = max(prompt_embeds.shape[1], negative_prompt_embeds.shape[1])
prompt_embeds = self._pad_tensor_to_length(prompt_embeds, max_len, dim=1, pad_value=0)
negative_prompt_embeds = self._pad_tensor_to_length(negative_prompt_embeds, max_len, dim=1, pad_value=0)
prompt_attention_mask = self._pad_tensor_to_length(prompt_attention_mask, max_len, dim=1, pad_value=0)
negative_prompt_attention_mask = self._pad_tensor_to_length(negative_prompt_attention_mask, max_len, dim=1, pad_value=0)
# 4. Concatenate for CFG: [Neg, Pos]
text_embeddings = torch.cat([negative_prompt_embeds, prompt_embeds], dim=0)
attention_mask = torch.cat([negative_prompt_attention_mask, prompt_attention_mask], dim=0)
else:
# If no CFG, we just use positive embeddings as is
text_embeddings = prompt_embeds
attention_mask = prompt_attention_mask
# 5. Scheduler & Latents
self.scheduler.set_timesteps(num_inference_steps, device=device)
timesteps = self.scheduler.timesteps
latent_h = height // self.vae_scale_factor
latent_w = width // self.vae_scale_factor
if latents is None:
latents = torch.randn((batch_size, self.unet.config.in_channels, latent_h, latent_w), generator=generator, device=device, dtype=dtype)
else:
latents = latents.to(device=device, dtype=dtype)
# 6. Denoising Loop
for i, t in enumerate(tqdm(timesteps, desc="Sampling")):
# Duplicate latents only if doing CFG
latent_model_input = torch.cat([latents] * 2) if do_classifier_free_guidance else latents
model_out = self.unet(
latent_model_input, t,
encoder_hidden_states=text_embeddings,
encoder_attention_mask=attention_mask,
return_dict=False,
)[0]
# Perform CFG guidance
if do_classifier_free_guidance:
flow_uncond, flow_cond = model_out.chunk(2)
model_out = flow_uncond + guidance_scale * (flow_cond - flow_uncond)
latents = self.scheduler.step(model_out, t, latents, return_dict=False)[0]
# 7. Decode
if output_type == "latent":
if not return_dict: return (latents, prompt)
return SdxsPipelineOutput(images=latents)
latents = latents * self.vae_latents_std.to(device, self.vae.dtype) + self.vae_latents_mean.to(device, self.vae.dtype)
image_output = self.vae.decode(latents.to(self.vae.dtype), return_dict=False)[0]
image_output = (image_output.clamp(-1, 1) + 1) / 2
image_np = image_output.cpu().permute(0, 2, 3, 1).float().numpy()
if output_type == "pil":
images = [(Image.fromarray((img * 255).round().astype("uint8"))) for img in image_np]
else:
images = image_np
if not return_dict:
return (images,)
return SdxsPipelineOutput(images=images) |