Instructions to use dimitribarbot/Qwen-Image-int8wo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use dimitribarbot/Qwen-Image-int8wo with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("dimitribarbot/Qwen-Image-int8wo", 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
Add safetensors version of the model?
#1
by raptorkwok - opened
Using safetensors save loading time & memory usage, could you add safetensors version of the model?
Hi,
Unfortunately, this does not seem possible, according to the documentation of torchao with diffusers: https://huggingface.co/docs/diffusers/quantization/torchao#serializing-and-deserializing-quantized-models (view the safe_serialization=False while saving and the use_safetensors=False while loading).