huemin commited on
Commit
e7b7dc2
·
verified ·
1 Parent(s): 5e67da9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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 -U diffusers
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,