1. 10 Dec, 2024 1 commit
  2. 17 Nov, 2024 1 commit
  3. 15 Oct, 2024 1 commit
  4. 05 Sep, 2024 1 commit
  5. 17 Jun, 2024 1 commit
  6. 12 Jun, 2024 1 commit
  7. 11 Jun, 2024 1 commit
    • Patrick's avatar
      image_processor.py: Fixed an error in ValueError's message (#8447) · 0a1c13af
      Patrick authored
      
      
      * image_processor.py: Fixed an error in ValueError's message , as the string's join method tried to join types, instead of strings
      
      Bug that occurred:
      
      f"Input is in incorrect format. Currently, we only support {', '.join(supported_formats)}"
      TypeError: sequence item 0: expected str instance, type found
      
      * Fixed: C417 Unnecessary `map` usage (rewrite using a generator expression)
      
      ---------
      Co-authored-by: default avatarSayak Paul <spsayakpaul@gmail.com>
      0a1c13af
  8. 10 May, 2024 1 commit
    • Sayak Paul's avatar
      [Core] introduce videoprocessor. (#7776) · 04f4bd54
      Sayak Paul authored
      
      
      * introduce videoprocessor.
      
      * fix quality
      
      * address yiyi's feedback
      
      * fix preprocess_video call.
      
      * video_processor -> image_processor
      
      * fix
      
      * fix more.
      
      * quality
      
      * image_processor -> video_processor
      
      * support List[List[PIL.Image.Image]]
      
      * change to video_processor.
      
      * documentation
      
      * Apply suggestions from code review
      
      * changes
      
      * remove print.
      
      * refactor video processor (part # 7776) (#7861)
      
      * update
      
      * update remove deprecate
      
      * Update src/diffusers/video_processor.py
      
      * update
      
      * Apply suggestions from code review
      
      * deprecate list of 5d for video and list of 4d for image + apply other feedbacks
      
      * up
      
      ---------
      Co-authored-by: default avatarSayak Paul <spsayakpaul@gmail.com>
      
      * add doc.
      
      * tensor2vid -> postprocess_video.
      
      * refactor preprocess with preprocess_video
      
      * set default values.
      
      * empty commit
      
      * more refactoring of prepare_latents in animatediff vid2vid
      
      * checking documentation
      
      * remove documentation for now.
      
      * fix animatediff sdxl
      
      * fix test failure [part of video processor PR] (#7905)
      
      up
      
      * remove preceed_with_frames.
      
      * doc
      
      * fix
      
      * fix
      
      * remove video input as a single-frame video.
      
      ---------
      Co-authored-by: default avatarYiYi Xu <yixu310@gmail.com>
      04f4bd54
  9. 08 May, 2024 1 commit
  10. 24 Apr, 2024 1 commit
  11. 02 Apr, 2024 1 commit
    • Sayak Paul's avatar
      add: utility to format our docs too 📜 (#7314) · 4a343077
      Sayak Paul authored
      * add: utility to format our docs too 📜
      
      * debugging saga
      
      * fix: message
      
      * checking
      
      * should be fixed.
      
      * revert pipeline_fixture
      
      * remove empty line
      
      * make style
      
      * fix: setup.py
      
      * style.
      4a343077
  12. 04 Mar, 2024 1 commit
  13. 19 Feb, 2024 1 commit
  14. 08 Feb, 2024 1 commit
  15. 04 Jan, 2024 1 commit
    • Chi's avatar
      Batter way to write binarize() function. (#6394) · 2993257f
      Chi authored
      
      
      * I added a new doc string to the class. This is more flexible to understanding other developers what are doing and where it's using.
      
      * Update src/diffusers/models/unet_2d_blocks.py
      
      This changes suggest by maintener.
      Co-authored-by: default avatarSayak Paul <spsayakpaul@gmail.com>
      
      * Update src/diffusers/models/unet_2d_blocks.py
      
      Add suggested text
      Co-authored-by: default avatarSayak Paul <spsayakpaul@gmail.com>
      
      * Update unet_2d_blocks.py
      
      I changed the Parameter to Args text.
      
      * Update unet_2d_blocks.py
      
      proper indentation set in this file.
      
      * Update unet_2d_blocks.py
      
      a little bit of change in the act_fun argument line.
      
      * I run the black command to reformat style in the code
      
      * Update unet_2d_blocks.py
      
      similar doc-string add to have in the original diffusion repository.
      
      * Batter way to write binarize function
      
      * Solve check_code_quality error
      
      * My mistake to run pull request but not reformated file
      
      * Update image_processor.py
      
      * remove extra variable and space
      
      * Update image_processor.py
      
      * Run ruff libarary to reformat my file
      
      ---------
      Co-authored-by: default avatarSayak Paul <spsayakpaul@gmail.com>
      Co-authored-by: default avatarYiYi Xu <yixu310@gmail.com>
      2993257f
  16. 02 Jan, 2024 1 commit
  17. 26 Dec, 2023 1 commit
  18. 11 Dec, 2023 1 commit
  19. 28 Nov, 2023 1 commit
  20. 27 Nov, 2023 1 commit
  21. 16 Nov, 2023 1 commit
  22. 26 Sep, 2023 1 commit
  23. 25 Sep, 2023 1 commit
  24. 31 Aug, 2023 1 commit
  25. 29 Aug, 2023 1 commit
  26. 25 Aug, 2023 1 commit
  27. 03 Jul, 2023 1 commit
  28. 21 Jun, 2023 1 commit
  29. 15 Jun, 2023 1 commit
  30. 05 Jun, 2023 1 commit
  31. 01 May, 2023 1 commit
  32. 11 Apr, 2023 1 commit
    • Patrick von Platen's avatar
      Fix config prints and save, load of pipelines (#2849) · 8b451eb6
      Patrick von Platen authored
      * [Config] Fix config prints and save, load
      
      * Only use potential nn.Modules for dtype and device
      
      * Correct vae image processor
      
      * make sure in_channels is not accessed directly
      
      * make sure in channels is only accessed via config
      
      * Make sure schedulers only access config attributes
      
      * Make sure to access config in SAG
      
      * Fix vae processor and make style
      
      * add tests
      
      * uP
      
      * make style
      
      * Fix more naming issues
      
      * Final fix with vae config
      
      * change more
      8b451eb6
  33. 27 Mar, 2023 1 commit
  34. 15 Mar, 2023 1 commit