Instructions to use Lakonik/AsymFLUX.2-klein-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Lakonik/AsymFLUX.2-klein-9B with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Lakonik/AsymFLUX.2-klein-9B", 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
Create LICENSE.md
Browse files- LICENSE.md +11 -0
LICENSE.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# License for AsymFLUX.2-klein
|
| 2 |
+
|
| 3 |
+
This repository distributes an **AsymFLUX.2-klein adapter** that is a **Derivative** of
|
| 4 |
+
**FLUX.2 klein Base 9B** by **Black Forest Labs Inc.**
|
| 5 |
+
|
| 6 |
+
Use and distribution of this app are governed by the **FLUX Non-Commercial License**.
|
| 7 |
+
No commercial use of this app or its derivatives is permitted without a separate
|
| 8 |
+
commercial license from Black Forest Labs.
|
| 9 |
+
|
| 10 |
+
- Full license: https://huggingface.co/black-forest-labs/FLUX.2-klein-base-9B/blob/main/LICENSE.md
|
| 11 |
+
- This repository does not grant any rights beyond the license above.
|