@@ -989,7 +989,7 @@ def __call__(
989989                The prompt or prompts not to guide the image generation to be sent to `tokenizer_2` and 
990990                `text_encoder_2`. If not defined, `negative_prompt` is used in all the text-encoders. 
991991            true_cfg_scale (`float`, *optional*, defaults to 1.0): 
992-                 When > 1.0 and a provided `negative_prompt`, enables true classifier-free guidance . 
992+                 True classifier-free guidance (guidance scale) is enabled when `true_cfg_scale` > 1 and `negative_prompt` is provided . 
993993            height (`int`, *optional*, defaults to self.unet.config.sample_size * self.vae_scale_factor): 
994994                The height in pixels of the generated image. This is set to 1024 by default for the best results. 
995995            width (`int`, *optional*, defaults to self.unet.config.sample_size * self.vae_scale_factor): 
@@ -1015,13 +1015,11 @@ def __call__(
10151015                their `set_timesteps` method. If not defined, the default behavior when `num_inference_steps` is passed 
10161016                will be used. 
10171017            guidance_scale (`float`, *optional*, defaults to 3.5): 
1018-                 Guidance scale as defined in [Classifier-Free Diffusion 
1019-                 Guidance](https://huggingface.co/papers/2207.12598). `guidance_scale` is defined as `w` of equation 2. 
1020-                 of [Imagen Paper](https://huggingface.co/papers/2205.11487). Guidance scale is enabled by setting 
1021-                 `guidance_scale > 1`. Higher guidance scale encourages to generate images that are closely linked to 
1022-                 the text `prompt`, usually at the expense of lower image quality. In case of Flux, which is a guidance- 
1023-                 distilled model, `guidance_scale > 1` doesn't implement true classifier-free guidance. Specifying 
1024-                 `guidance_scale > 1` just mimics it. 
1018+                 Embedded guidance scale is enabled by setting `guidance_scale` > 1. Higher `guidance_scale` encourages a model to  
1019+                 generate images more aligned with `prompt` at the expense of lower image quality. 
1020+                  
1021+                 Guidance-distilled models approximates true classifier-free guidance for `guidance_scale` > 1. Refer to the  
1022+                 [paper](https://huggingface.co/papers/2210.03142) to learn more. 
10251023            num_images_per_prompt (`int`, *optional*, defaults to 1): 
10261024                The number of images to generate per prompt. 
10271025            generator (`torch.Generator` or `List[torch.Generator]`, *optional*): 
0 commit comments