Text-to-Image
Diffusers
Safetensors
English
Flux2KleinPipeline
flux2_klein
image-editing
diffusion
quantized
quantfunc
flux
Instructions to use QuantFunc/Klein-4B-Series with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use QuantFunc/Klein-4B-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/Klein-4B-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 Settings
- Draw Things
- DiffusionBee
sync config.json from ModelScope
Browse files- config.json +12 -0
config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "flux2_klein",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Flux2Transformer2DModel"
|
| 5 |
+
],
|
| 6 |
+
"name_or_path": "QuantFunc/Klein-4B-Series",
|
| 7 |
+
"task": "text-to-image",
|
| 8 |
+
"framework": "quantfunc",
|
| 9 |
+
"license": "other",
|
| 10 |
+
"description": "Pre-quantized FLUX.2 Klein 4B text-to-image / image-editing model series by QuantFunc",
|
| 11 |
+
"_comment": "This is a minimal config to enable download stats on HF Hub. Not used for loading."
|
| 12 |
+
}
|