Text-to-Image
Diffusers
Safetensors
English
QuantFuncPipeline
custom_qwen_image
image-generation
diffusion
quantized
quantfunc
Instructions to use QuantFunc/Qwen-Image-Series with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use QuantFunc/Qwen-Image-Series 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/Qwen-Image-Series", 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
Upload config.json with huggingface_hub
Browse files- config.json +10 -5
config.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
| 1 |
{
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"model_type": "custom_qwen_image",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"QwenImageTransformer2DModel"
|
| 5 |
+
],
|
| 6 |
+
"name_or_path": "QuantFunc/Qwen-Image-Series",
|
| 7 |
+
"task": "text-to-image",
|
| 8 |
+
"framework": "quantfunc",
|
| 9 |
+
"license": "other",
|
| 10 |
+
"description": "Pre-quantized Qwen-Image text-to-image model series by QuantFunc",
|
| 11 |
+
"_comment": "This is a minimal config to enable download stats on HF Hub. Not used for loading."
|
| 12 |
}
|