Update README.md
Browse files
README.md
CHANGED
|
@@ -47,7 +47,7 @@ FLUX.2 [klein] 4B is also available in both [ComfyUI](https://github.com/comfyan
|
|
| 47 |
To use FLUX.2 [klein] 4B with the 🧨 Diffusers python library, first install or upgrade diffusers:
|
| 48 |
|
| 49 |
```shell
|
| 50 |
-
pip install
|
| 51 |
```
|
| 52 |
Then you can use Flux2KleinPipeline to run the model:
|
| 53 |
|
|
@@ -63,7 +63,7 @@ pipe.enable_model_cpu_offload() # save some VRAM by offloading the model to CPU
|
|
| 63 |
|
| 64 |
prompt = "A cat holding a sign that says hello world"
|
| 65 |
image = pipe(
|
| 66 |
-
prompt,
|
| 67 |
height=1024,
|
| 68 |
width=1024,
|
| 69 |
guidance_scale=1.0,
|
|
|
|
| 47 |
To use FLUX.2 [klein] 4B with the 🧨 Diffusers python library, first install or upgrade diffusers:
|
| 48 |
|
| 49 |
```shell
|
| 50 |
+
pip install git+https://github.com/huggingface/diffusers.git
|
| 51 |
```
|
| 52 |
Then you can use Flux2KleinPipeline to run the model:
|
| 53 |
|
|
|
|
| 63 |
|
| 64 |
prompt = "A cat holding a sign that says hello world"
|
| 65 |
image = pipe(
|
| 66 |
+
prompt=prompt,
|
| 67 |
height=1024,
|
| 68 |
width=1024,
|
| 69 |
guidance_scale=1.0,
|