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
File size: 1,742 Bytes
b448f48 | 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 | {
"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" }
}
}
|