"conda/vscode:/vscode.git/clone" did not exist on "08f4c783cc5f44f6477e073271c1042eec791a91"
  1. 26 Oct, 2023 1 commit
  2. 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
  3. 23 Oct, 2023 3 commits
  4. 18 Oct, 2023 3 commits
  5. 17 Oct, 2023 1 commit
  6. 16 Oct, 2023 4 commits
  7. 11 Oct, 2023 2 commits
  8. 10 Oct, 2023 2 commits
  9. 09 Oct, 2023 2 commits
  10. 08 Oct, 2023 1 commit
  11. 05 Oct, 2023 1 commit
  12. 03 Oct, 2023 1 commit
  13. 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
  14. 28 Sep, 2023 1 commit
  15. 27 Sep, 2023 2 commits
  16. 26 Sep, 2023 2 commits
  17. 25 Sep, 2023 2 commits
  18. 21 Sep, 2023 1 commit
  19. 20 Sep, 2023 1 commit
  20. 19 Sep, 2023 3 commits
  21. 18 Sep, 2023 2 commits
    • Ruoxi's avatar
      Implement `CustomDiffusionAttnProcessor2_0`. (#4604) · 16b9a57d
      Ruoxi authored
      * Implement `CustomDiffusionAttnProcessor2_0`
      
      * Doc-strings and type annotations for `CustomDiffusionAttnProcessor2_0`. (#1)
      
      * Update attnprocessor.md
      
      * Update attention_processor.py
      
      * Interops for `CustomDiffusionAttnProcessor2_0`.
      
      * Formatted `attention_processor.py`.
      
      * Formatted doc-string in `attention_processor.py`
      
      * Conditional CustomDiffusion2_0 for training example.
      
      * Remove unnecessary reference impl in comments.
      
      * Fix `save_attn_procs`.
      16b9a57d
    • Lee Dong Joo's avatar
      fix guidance_rescale docstring (#5063) · b089102a
      Lee Dong Joo authored
      b089102a