Text-to-Image
Diffusers
Safetensors
English
Chinese
QwenImage21Pipeline
sdnq
int4
uint4
image-generation
image-editing
apple-silicon
8-bit precision
Instructions to use ixim/Image21-INT4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ixim/Image21-INT4 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ixim/Image21-INT4", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
File size: 959 Bytes
9116984 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | """Runtime placement for CUDA, Apple Silicon, and CPU.
8GB-class CUDA boards move one transformer block, or one text-encoder leaf, onto
the accelerator at a time. Apple Silicon loads the same checkpoint onto MPS;
unified memory has to hold it, because CPU and GPU do not have separate pools.
"""
SMALL_CUDA_BYTES = 10 * 1024 ** 3
def choose_runtime(device_type, accelerator_bytes):
if device_type not in ('cuda', 'mps', 'cpu'):
raise ValueError(f'Unsupported device type: {device_type}')
if accelerator_bytes <= 0:
raise ValueError('Accelerator memory must be positive')
if device_type == 'cuda' and accelerator_bytes <= SMALL_CUDA_BYTES:
# One transformer block, or one text-encoder leaf, is on the GPU at a time.
return {'offload': 'group', 'dtype': 'bfloat16', 'use_stream': False}
return {'offload': 'model' if device_type == 'cuda' else 'resident',
'dtype': 'bfloat16', 'use_stream': False}
|