Text-to-Image
Diffusers
English
Chinese
custom_qwen_image
image-generation
multimodal
qwen
quantized
nunchaku
comfyui
Instructions to use QuantFunc/Nunchaku-Qwen-Image-2512 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use QuantFunc/Nunchaku-Qwen-Image-2512 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("QuantFunc/Nunchaku-Qwen-Image-2512", 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
Upload folder using huggingface_hub
Browse files- config.json +13 -0
config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "custom_qwen_image",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"NunchakuQwenImageModel"
|
| 5 |
+
],
|
| 6 |
+
"name_or_path": "QuantFunc/Nunchaku-Qwen-Image-2512",
|
| 7 |
+
"task": "image-generation",
|
| 8 |
+
"framework": "custom",
|
| 9 |
+
"license": "apache-2.0",
|
| 10 |
+
"parameters": 2512,
|
| 11 |
+
"description": "Nunchaku variant of Qwen for image generation / multimodal tasks",
|
| 12 |
+
"_comment": "This is a minimal config to enable download stats on HF Hub. Not used for loading."
|
| 13 |
+
}
|