1. 10 Nov, 2023 1 commit
  2. 09 Nov, 2023 1 commit
  3. 06 Nov, 2023 1 commit
  4. 01 Nov, 2023 1 commit
  5. 31 Oct, 2023 3 commits
  6. 30 Oct, 2023 1 commit
  7. 27 Oct, 2023 1 commit
  8. 26 Oct, 2023 1 commit
  9. 25 Oct, 2023 3 commits
    • Ran Ran's avatar
      Add from_pt flag to enable model from PT (#5501) · 8959c5b9
      Ran Ran authored
      * Add from_pt flag to enable model from PT
      
      * Format the file
      
      * Reformat the file
      8959c5b9
    • Patrick von Platen's avatar
      make style · d420d713
      Patrick von Platen authored
      d420d713
    • Logan's avatar
      Add a new community pipeline (#5477) · a1fad828
      Logan authored
      
      
      * Add a new community pipeline
      
      examples/community/latent_consistency_img2img.py
      
      which can be called like this
      
      import torch
      from diffusers import DiffusionPipeline
      
      pipe = DiffusionPipeline.from_pretrained(
                      "SimianLuo/LCM_Dreamshaper_v7", custom_pipeline="latent_consistency_txt2img", custom_revision="main")
      
                  # To save GPU memory, torch.float16 can be used, but it may compromise image quality.
      pipe.to(torch_device="cuda", torch_dtype=torch.float32)
      
      img2img=LatentConsistencyModelPipeline_img2img(
          vae=pipe.vae,
          text_encoder=pipe.text_encoder,
          tokenizer=pipe.tokenizer,
          unet=pipe.unet,
          #scheduler=pipe.scheduler,
          scheduler=None,
          safety_checker=None,
          feature_extractor=pipe.feature_extractor,
          requires_safety_checker=False,
      )
      
      img = Image.open("thisismyimage.png")
      
      result = img2img(prompt,img,strength,num_inference_steps=4)
      
      * Apply suggestions from code review
      
      Fix name formatting for scheduler
      Co-authored-by: default avatarPatrick von Platen <patrick.v.platen@gmail.com>
      
      * update readme (and run formatter on latent_consistency_img2img.py)
      
      ---------
      Co-authored-by: default avatarPatrick von Platen <patrick.v.platen@gmail.com>
      a1fad828
  10. 23 Oct, 2023 3 commits
  11. 18 Oct, 2023 3 commits
  12. 17 Oct, 2023 1 commit
  13. 16 Oct, 2023 4 commits
  14. 11 Oct, 2023 2 commits
  15. 10 Oct, 2023 2 commits
  16. 09 Oct, 2023 2 commits
  17. 08 Oct, 2023 1 commit
  18. 05 Oct, 2023 1 commit
  19. 03 Oct, 2023 1 commit
  20. 02 Oct, 2023 2 commits
    • Patrick von Platen's avatar
      [Schedulers] Fix callback steps (#5261) · bdd16116
      Patrick von Platen authored
      * fix all
      
      * make fix copies
      
      * make fix copies
      bdd16116
    • Sayak Paul's avatar
      fix: how print training resume logs. (#5117) · d56825e4
      Sayak Paul authored
      
      
      * fix: how print training resume logs.
      
      * propagate changes to text-to-image scripts.
      
      * propagate changes to instructpix2pix.
      
      * propagate changes to dreambooth
      
      * propagate changes to custom diffusion and instructpix2pix
      
      * propagate changes to kandinsky
      
      * propagate changes to textual inv.
      
      * debug
      
      * fix: checkpointing.
      
      * debug
      
      * debug
      
      * debug
      
      * back to the square
      
      * debug
      
      * debug
      
      * change condition order.
      
      * debug
      
      * debug
      
      * debug
      
      * debug
      
      * revert to original
      
      * clean
      
      ---------
      Co-authored-by: default avatarPatrick von Platen <patrick.v.platen@gmail.com>
      d56825e4
  21. 28 Sep, 2023 1 commit
  22. 27 Sep, 2023 2 commits
  23. 26 Sep, 2023 2 commits