1. 05 Dec, 2023 1 commit
  2. 04 Dec, 2023 2 commits
  3. 01 Dec, 2023 3 commits
  4. 30 Nov, 2023 1 commit
  5. 29 Nov, 2023 1 commit
  6. 28 Nov, 2023 1 commit
  7. 27 Nov, 2023 3 commits
  8. 21 Nov, 2023 2 commits
  9. 20 Nov, 2023 4 commits
  10. 15 Nov, 2023 1 commit
  11. 14 Nov, 2023 3 commits
  12. 13 Nov, 2023 2 commits
  13. 11 Nov, 2023 1 commit
  14. 31 Oct, 2023 1 commit
  15. 25 Oct, 2023 2 commits
    • 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
  16. 23 Oct, 2023 1 commit
  17. 18 Oct, 2023 1 commit
  18. 17 Oct, 2023 1 commit
  19. 16 Oct, 2023 1 commit
  20. 02 Oct, 2023 1 commit
  21. 27 Sep, 2023 1 commit
  22. 25 Sep, 2023 2 commits
  23. 19 Sep, 2023 1 commit
  24. 18 Sep, 2023 1 commit
  25. 16 Sep, 2023 1 commit
  26. 15 Sep, 2023 1 commit
    • dotieuthien's avatar
      Fix import in examples (#5048) · 941473a1
      dotieuthien authored
      
      
      * convert tensorrt controlnet
      
      * Fix code quality
      
      * Fix code quality
      
      * Fix code quality
      
      * Fix code quality
      
      * Fix code quality
      
      * Fix code quality
      
      * Fix number controlnet condition
      
      * Add convert SD XL to onnx
      
      * Add convert SD XL to tensorrt
      
      * Add convert SD XL to tensorrt
      
      * Add examples in comments
      
      * Add examples in comments
      
      * Add test onnx controlnet
      
      * Add tensorrt test
      
      * Remove copied
      
      * Move file test to examples/community
      
      * Remove script
      
      * Remove script
      
      * Remove text
      
      * Fix import
      
      ---------
      Co-authored-by: default avatardotieuthien <thien.do@mservice.com.vn>
      Co-authored-by: default avatarPatrick von Platen <patrick.v.platen@gmail.com>
      941473a1