"src/diffusers/models/unet_3d_condition.py" did not exist on "4125756e88e82370c197fecf28e9f0b4d7eee6c3"
  1. 18 Aug, 2025 7 commits
  2. 17 Aug, 2025 1 commit
    • naykun's avatar
      Qwen Image Edit Support (#12164) · e682af20
      naykun authored
      * feat(qwen-image):
      add qwen-image-edit support
      
      * fix(qwen image):
      - compatible with torch.compile in new rope setting
      - fix init import
      - add prompt truncation in img2img and inpaint pipe
      - remove unused logic and comment
      - add copy statement
      - guard logic for rope video shape tuple
      
      * fix(qwen image):
      - make fix-copies
      - update doc
      e682af20
  3. 15 Aug, 2025 2 commits
  4. 14 Aug, 2025 5 commits
  5. 13 Aug, 2025 5 commits
  6. 12 Aug, 2025 4 commits
  7. 11 Aug, 2025 7 commits
  8. 09 Aug, 2025 1 commit
  9. 08 Aug, 2025 5 commits
  10. 07 Aug, 2025 3 commits
    • YiYi Xu's avatar
      [qwen] device typo (#12099) · 50e18ee6
      YiYi Xu authored
      up
      50e18ee6
    • DefTruth's avatar
      fix flux type hint (#12089) · 4b17fa2a
      DefTruth authored
      fix-flux-type-hint
      4b17fa2a
    • dg845's avatar
      Implement Frequency-Decoupled Guidance (FDG) as a Guider (#11976) · d45199a2
      dg845 authored
      
      
      * Initial commit implementing frequency-decoupled guidance (FDG) as a guider
      
      * Update FrequencyDecoupledGuidance docstring to describe FDG
      
      * Update project so that it accepts any number of non-batch dims
      
      * Change guidance_scale and other params to accept a list of params for each freq level
      
      * Add comment with Laplacian pyramid shapes
      
      * Add function to import_utils to check if the kornia package is available
      
      * Only import from kornia if package is available
      
      * Fix bug: use pred_cond/uncond in freq space rather than data space
      
      * Allow guidance rescaling to be done in data space or frequency space (speculative)
      
      * Add kornia install instructions to kornia import error message
      
      * Add config to control whether operations are upcast to fp64
      
      * Add parallel_weights recommended values to docstring
      
      * Apply style fixes
      
      * make fix-copies
      
      ---------
      Co-authored-by: default avatargithub-actions[bot] <github-actions[bot]@users.noreply.github.com>
      Co-authored-by: default avatarAryan <aryan@huggingface.co>
      d45199a2