Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/en/api/pipelines/flux2.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Original model checkpoints for Flux can be found [here](https://huggingface.co/b

## Caption upsampling

Flux.2 can potentially generate better better outputs with better prompts. We can "upsample"
Flux.2 can potentially generate better outputs with better prompts. We can "upsample"
an input prompt by setting the `caption_upsample_temperature` argument in the pipeline call arguments.
The [official implementation](https://github.com/black-forest-labs/flux2/blob/5a5d316b1b42f6b59a8c9194b77c8256be848432/src/flux2/text_encoder.py#L140) recommends this value to be 0.15.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/en/quantization/bitsandbytes.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Once a model is quantized, you can push the model to the Hub with the [`~ModelMi

Quantizing a model in 4-bit reduces your memory-usage by 4x:

bitsandbytes is supported in both Transformers and Diffusers, so you can can quantize both the
bitsandbytes is supported in both Transformers and Diffusers, so you can quantize both the
[`FluxTransformer2DModel`] and [`~transformers.T5EncoderModel`].

For Ada and higher-series GPUs. we recommend changing `torch_dtype` to `torch.bfloat16`.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/en/using-diffusers/schedulers.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ image = pipeline(prompt, guidance_rescale=0.7).images[0]

## Timestep spacing

Timestep spacing refers to the specific steps *t* to sample from from the schedule. Diffusers provides three spacing types as shown below.
Timestep spacing refers to the specific steps *t* to sample from the schedule. Diffusers provides three spacing types as shown below.

| spacing strategy | spacing calculation | example timesteps |
|---|---|---|
Expand Down
Loading