1. 07 Jan, 2025 2 commits
  2. 06 Jan, 2025 6 commits
  3. 05 Jan, 2025 1 commit
  4. 02 Jan, 2025 7 commits
  5. 27 Dec, 2024 3 commits
  6. 25 Dec, 2024 2 commits
  7. 24 Dec, 2024 2 commits
  8. 23 Dec, 2024 13 commits
  9. 21 Dec, 2024 2 commits
    • Mehmet Yiğit Özgenç's avatar
      flux controlnet inpaint config bug (#10291) · 233dffdc
      Mehmet Yiğit Özgenç authored
      
      
      * flux controlnet inpaint config bug
      
      * Update src/diffusers/pipelines/flux/pipeline_flux_controlnet_inpainting.py
      
      ---------
      Co-authored-by: default avataryigitozgenc <yigit@quantuslabs.ai>
      Co-authored-by: default avatarhlky <hlky@hlky.ac>
      233dffdc
    • hlky's avatar
      Support Flux IP Adapter (#10261) · be207099
      hlky authored
      
      
      * Flux IP-Adapter
      
      * test cfg
      
      * make style
      
      * temp remove copied from
      
      * fix test
      
      * fix test
      
      * v2
      
      * fix
      
      * make style
      
      * temp remove copied from
      
      * Apply suggestions from code review
      Co-authored-by: default avatarYiYi Xu <yixu310@gmail.com>
      
      * Move encoder_hid_proj to inside FluxTransformer2DModel
      
      * merge
      
      * separate encode_prompt, add copied from, image_encoder offload
      
      * make
      
      * fix test
      
      * fix
      
      * Update src/diffusers/pipelines/flux/pipeline_flux.py
      
      * test_flux_prompt_embeds change not needed
      
      * true_cfg -> true_cfg_scale
      
      * fix merge conflict
      
      * test_flux_ip_adapter_inference
      
      * add fast test
      
      * FluxIPAdapterMixin not test mixin
      
      * Update pipeline_flux.py
      Co-authored-by: default avatarYiYi Xu <yixu310@gmail.com>
      
      ---------
      Co-authored-by: default avatarYiYi Xu <yixu310@gmail.com>
      be207099
  10. 20 Dec, 2024 2 commits
    • Aditya Raj's avatar
      [BUG FIX] [Stable Audio Pipeline] Resolve torch.Tensor.new_zeros() TypeError... · 90200860
      Aditya Raj authored
      
      [BUG FIX] [Stable Audio Pipeline] Resolve torch.Tensor.new_zeros() TypeError in function prepare_latents caused by audio_vae_length (#10306)
      
      [BUG FIX] [Stable Audio Pipeline] TypeError: new_zeros(): argument 'size' failed to unpack the object at pos 3 with error "type must be tuple of ints,but got float"
      
      torch.Tensor.new_zeros() takes a single argument size (int...) – a list, tuple, or torch.Size of integers defining the shape of the output tensor.
      
      in function prepare_latents:
      audio_vae_length = self.transformer.config.sample_size * self.vae.hop_length
      audio_shape = (batch_size // num_waveforms_per_prompt, audio_channels, audio_vae_length)
      ...
      audio = initial_audio_waveforms.new_zeros(audio_shape)
      
      audio_vae_length evaluates to float because self.transformer.config.sample_size returns a float
      Co-authored-by: default avatarhlky <hlky@hlky.ac>
      90200860
    • Leojc's avatar
      docs: fix a mistake in docstring (#10319) · c8ee4af2
      Leojc authored
      Update pipeline_hunyuan_video.py
      
      docs: fix a mistake
      c8ee4af2