1. 26 Dec, 2023 9 commits
  2. 25 Dec, 2023 5 commits
    • dg845's avatar
      Change LCM-LoRA README Script Example Learning Rates to 1e-4 (#6304) · a3d31e3a
      dg845 authored
      Change README LCM-LoRA example learning rates to 1e-4.
      a3d31e3a
    • Jianqi Pan's avatar
      fix: cannot set guidance_scale (#6326) · 84c403ae
      Jianqi Pan authored
      fix: set guidance_scale
      84c403ae
    • Sayak Paul's avatar
      [Tests] Speed up example tests (#6319) · f4b0b26f
      Sayak Paul authored
      * remove validation args from textual onverson tests
      
      * reduce number of train steps in textual inversion tests
      
      * fix: directories.
      
      * debig
      
      * fix: directories.
      
      * remove validation tests from textual onversion
      
      * try reducing the time of test_text_to_image_checkpointing_use_ema
      
      * fix: directories
      
      * speed up test_text_to_image_checkpointing
      
      * speed up test_text_to_image_checkpointing_checkpoints_total_limit_removes_multiple_checkpoints
      
      * fix
      
      * speed up test_instruct_pix2pix_checkpointing_checkpoints_total_limit_removes_multiple_checkpoints
      
      * set checkpoints_total_limit to 2.
      
      * test_text_to_image_lora_checkpointing_checkpoints_total_limit_removes_multiple_checkpoints speed up
      
      * speed up test_unconditional_checkpointing_checkpoints_total_limit_removes_multiple_checkpoints
      
      * debug
      
      * fix: directories.
      
      * speed up test_instruct_pix2pix_checkpointing_checkpoints_total_limit
      
      * speed up: test_controlnet_checkpointing_checkpoints_total_limit_removes_multiple_checkpoints
      
      * speed up test_controlnet_sdxl
      
      * speed up dreambooth tests
      
      * speed up test_dreambooth_lora_checkpointing_checkpoints_total_limit_removes_multiple_checkpoints
      
      * speed up test_custom_diffusion_checkpointing_checkpoints_total_limit_removes_multiple_checkpoints
      
      * speed up test_text_to_image_lora_sdxl_text_encoder_checkpointing_checkpoints_total_limit
      
      * speed up # checkpoint-2 should have been deleted
      
      * speed up examples/text_to_image/test_text_to_image.py::TextToImage::test_text_to_image_checkpointing_checkpoints_total_limit
      
      * additional speed ups
      
      * style
      f4b0b26f
    • Sayak Paul's avatar
      fix: lora peft dummy components (#6308) · 89459a5d
      Sayak Paul authored
      * fix: lora peft dummy components
      
      * fix: dummy components
      89459a5d
    • Sayak Paul's avatar
      fix: t2i apdater paper link (#6314) · 008d9818
      Sayak Paul authored
      008d9818
  3. 24 Dec, 2023 4 commits
  4. 22 Dec, 2023 5 commits
  5. 21 Dec, 2023 15 commits
  6. 20 Dec, 2023 2 commits
    • Sayak Paul's avatar
      [Refactor upsamplers and downsamplers] separate out upsamplers and downsamplers. (#6128) · 22b45304
      Sayak Paul authored
      * separate out upsamplers and downsamplers.
      
      * import all the necessary blocks in resnet for backward comp.
      
      * move upsample2d and downsample2d to utils.
      
      * move downsample_2d to downsamplers.py
      
      * apply feedback
      
      * fix import
      
      * samplers -> sampling
      22b45304
    • Beinsezii's avatar
      EulerAncestral add `rescale_betas_zero_snr` (#6187) · 457abdf2
      Beinsezii authored
      
      
      * EulerAncestral add `rescale_betas_zero_snr`
      
      Uses same infinite sigma fix from EulerDiscrete. Interestingly the
      ancestral version had the opposite problem: too much contrast instead of
      too little.
      
      * UT for EulerAncestral `rescale_betas_zero_snr`
      
      * EulerAncestral upcast samples during step()
      
      It helps this scheduler too, particularly when the model is using bf16.
      
      While the noise dtype is still the model's it's automatically upcasted
      for the add so all it affects is determinism.
      
      ---------
      Co-authored-by: default avatarSayak Paul <spsayakpaul@gmail.com>
      457abdf2