Instructions to use INCModel/Z-Image-tiny-for-testing-W4A16-AutoRound with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use INCModel/Z-Image-tiny-for-testing-W4A16-AutoRound with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("INCModel/Z-Image-tiny-for-testing-W4A16-AutoRound", 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
- Draw Things
- DiffusionBee
File size: 1,125 Bytes
374ff65 | 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 | {
"bits": 4,
"data_type": "int",
"group_size": 128,
"sym": true,
"batch_size": 1,
"iters": 1,
"nsamples": 1,
"autoround_version": "0.13.0",
"block_name_to_quantize": "noise_refiner.0,context_refiner.0,layers.0",
"quant_method": "auto-round",
"packing_format": "auto_round:auto_gptq",
"extra_config": {
"noise_refiner.0.feed_forward.w1": {
"bits": 16,
"data_type": "fp"
},
"noise_refiner.0.feed_forward.w2": {
"bits": 16,
"data_type": "fp"
},
"noise_refiner.0.feed_forward.w3": {
"bits": 16,
"data_type": "fp"
},
"context_refiner.0.feed_forward.w1": {
"bits": 16,
"data_type": "fp"
},
"context_refiner.0.feed_forward.w2": {
"bits": 16,
"data_type": "fp"
},
"context_refiner.0.feed_forward.w3": {
"bits": 16,
"data_type": "fp"
},
"layers.0.feed_forward.w1": {
"bits": 16,
"data_type": "fp"
},
"layers.0.feed_forward.w2": {
"bits": 16,
"data_type": "fp"
},
"layers.0.feed_forward.w3": {
"bits": 16,
"data_type": "fp"
}
}
} |