Instructions to use redrob-labs/redrob-image with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use redrob-labs/redrob-image with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("redrob-labs/redrob-image", 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
| { | |
| "1": { | |
| "inputs": { | |
| "unet_name": "redrob-image.safetensors", | |
| "weight_dtype": "default" | |
| }, | |
| "class_type": "UNETLoader", | |
| "_meta": { "title": "Redrob Image" } | |
| }, | |
| "2": { | |
| "inputs": { | |
| "clip_name": "qwen_3_4b_fp8_mixed.safetensors", | |
| "type": "lumina2", | |
| "device": "default" | |
| }, | |
| "class_type": "CLIPLoader", | |
| "_meta": { "title": "Z-Image CLIP (Qwen3-4B)" } | |
| }, | |
| "3": { | |
| "inputs": { | |
| "vae_name": "ae.safetensors" | |
| }, | |
| "class_type": "VAELoader", | |
| "_meta": { "title": "AE VAE" } | |
| }, | |
| "4": { | |
| "inputs": { | |
| "text": "", | |
| "clip": ["2", 0] | |
| }, | |
| "class_type": "CLIPTextEncode", | |
| "_meta": { "title": "Positive prompt" } | |
| }, | |
| "5": { | |
| "inputs": { | |
| "conditioning": ["4", 0] | |
| }, | |
| "class_type": "ConditioningZeroOut", | |
| "_meta": { "title": "Negative (zero out)" } | |
| }, | |
| "6": { | |
| "inputs": { | |
| "width": 1024, | |
| "height": 1024, | |
| "batch_size": 1 | |
| }, | |
| "class_type": "EmptySD3LatentImage", | |
| "_meta": { "title": "Latent size" } | |
| }, | |
| "7": { | |
| "inputs": { | |
| "seed": 0, | |
| "steps": 8, | |
| "cfg": 1, | |
| "sampler_name": "res_multistep", | |
| "scheduler": "sgm_uniform", | |
| "denoise": 1, | |
| "model": ["1", 0], | |
| "positive": ["4", 0], | |
| "negative": ["5", 0], | |
| "latent_image": ["6", 0] | |
| }, | |
| "class_type": "KSampler", | |
| "_meta": { "title": "Sampler" } | |
| }, | |
| "8": { | |
| "inputs": { | |
| "samples": ["7", 0], | |
| "vae": ["3", 0] | |
| }, | |
| "class_type": "VAEDecode", | |
| "_meta": { "title": "VAE decode" } | |
| }, | |
| "9": { | |
| "inputs": { | |
| "filename_prefix": "redrob-image", | |
| "images": ["8", 0] | |
| }, | |
| "class_type": "SaveImage", | |
| "_meta": { "title": "Save image" } | |
| } | |
| } | |