1. 06 Jul, 2024 1 commit
  2. 05 Jul, 2024 3 commits
  3. 04 Jul, 2024 2 commits
  4. 03 Jul, 2024 8 commits
  5. 02 Jul, 2024 9 commits
  6. 01 Jul, 2024 8 commits
  7. 29 Jun, 2024 3 commits
  8. 28 Jun, 2024 2 commits
  9. 27 Jun, 2024 4 commits
    • Linoy Tsaban's avatar
      [Advanced dreambooth lora] adjustments to align with canonical script (#8406) · 35f45ecd
      Linoy Tsaban authored
      
      
      * minor changes
      
      * minor changes
      
      * minor changes
      
      * minor changes
      
      * minor changes
      
      * minor changes
      
      * minor changes
      
      * fix
      
      * fix
      
      * aligning with blora script
      
      * aligning with blora script
      
      * aligning with blora script
      
      * aligning with blora script
      
      * aligning with blora script
      
      * remove prints
      
      * style
      
      * default val
      
      * license
      
      * move save_model_card to outside push_to_hub
      
      * Update train_dreambooth_lora_sdxl_advanced.py
      
      ---------
      Co-authored-by: default avatarSayak Paul <spsayakpaul@gmail.com>
      35f45ecd
    • Sayak Paul's avatar
      [Chore] perform better deprecation for vqmodeloutput (#8719) · d5dd8df3
      Sayak Paul authored
      perform better deprecation for vqmodeloutput
      d5dd8df3
    • Mathis Koroglu's avatar
      Motion Model / Adapter versatility (#8301) · 3e0d128d
      Mathis Koroglu authored
      * Motion Model / Adapter versatility
      
      - allow to use a different number of layers per block
      - allow to use a different number of transformer per layers per block
      - allow a different number of motion attention head per block
      - use dropout argument in get_down/up_block in 3d blocks
      
      * Motion Model added arguments renamed & refactoring
      
      * Add test for asymmetric UNetMotionModel
      3e0d128d
    • vincedovy's avatar
      Fix json WindowsPath crash (#8662) · a536e775
      vincedovy authored
      
      
      * Add check for WindowsPath in to_json_string
      
      On Windows, os.path.join returns a WindowsPath. to_json_string does not convert this from a WindowsPath to a string. Added check for WindowsPath to to_json_saveable.
      
      * Remove extraneous convert to string in test_check_path_types (tests/others/test_config.py)
      
      * Fix style issues in tests/others/test_config.py
      
      * Add unit test to test_config.py to verify that PosixPath and WindowsPath (depending on system) both work when converted to JSON
      
      * Remove distinction between PosixPath and WindowsPath in ConfigMixIn.to_json_string(). Conditional now tests for Path, and uses Path.as_posix() to convert to string.
      
      ---------
      Co-authored-by: default avatarVincent Dovydaitis <vincedovy@gmail.com>
      Co-authored-by: default avatarSayak Paul <spsayakpaul@gmail.com>
      a536e775