Instructions to use mzbac/Qwen-Image-Layered-8bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use mzbac/Qwen-Image-Layered-8bit with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("mzbac/Qwen-Image-Layered-8bit", 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
Incorrect text_encoder/model.safetensors.index.json or missing safetensors file
#1
by fenjbfeuren - opened
The text encoder's model.safetensors.index.json file contains many references to a model-00004-of-00004.safetensors file, but no such file exists in the same directory. This prevents mflux at least (and I assume any other library) from loading the weights and running the model. Please fix it ASAP. Thanks.