1. 15 Dec, 2022 1 commit
  2. 13 Dec, 2022 2 commits
  3. 10 Dec, 2022 2 commits
  4. 09 Dec, 2022 1 commit
  5. 07 Dec, 2022 1 commit
    • Ben Sherman's avatar
      Trivial fix for undefined symbol in train_dreambooth.py (#1598) · 326de419
      Ben Sherman authored
      easy fix for undefined name in train_dreambooth.py
      
      import_model_class_from_model_name_or_path loads a pretrained model
      and refers to args.revision in a context where args is undefined. I modified
      the function to take revision as an argument and modified the invocation
      of the function to pass in the revision from args. Seems like this was caused
      by a cut and paste.
      326de419
  6. 06 Dec, 2022 2 commits
  7. 05 Dec, 2022 1 commit
  8. 02 Dec, 2022 1 commit
  9. 30 Nov, 2022 1 commit
  10. 28 Nov, 2022 1 commit
    • Suraj Patil's avatar
      v-prediction training support (#1455) · 6c56f050
      Suraj Patil authored
      * add get_velocity
      
      * add v prediction for training
      
      * fix saving
      
      * add revision arg
      
      * fix saving
      
      * save checkpoints dreambooth
      
      * fix saving embeds
      
      * add instruction in readme
      
      * quality
      
      * noise_pred -> model_pred
      6c56f050
  11. 22 Nov, 2022 1 commit
  12. 18 Nov, 2022 1 commit
  13. 08 Nov, 2022 1 commit
  14. 02 Nov, 2022 1 commit
  15. 31 Oct, 2022 1 commit
  16. 27 Oct, 2022 3 commits
  17. 26 Oct, 2022 2 commits
  18. 25 Oct, 2022 1 commit
  19. 20 Oct, 2022 2 commits
  20. 18 Oct, 2022 1 commit
  21. 13 Oct, 2022 1 commit
  22. 11 Oct, 2022 1 commit
  23. 10 Oct, 2022 1 commit
  24. 07 Oct, 2022 1 commit
  25. 05 Oct, 2022 3 commits
  26. 04 Oct, 2022 1 commit
  27. 03 Oct, 2022 1 commit
  28. 27 Sep, 2022 2 commits
    • Suraj Patil's avatar
      [examples/dreambooth] don't pass tensor_format to scheduler. (#649) · ac665b64
      Suraj Patil authored
      don't pass tensor_format
      ac665b64
    • Zhenhuan Liu's avatar
      Add training example for DreamBooth. (#554) · 3b747de8
      Zhenhuan Liu authored
      
      
      * Add training example for DreamBooth.
      
      * Fix bugs.
      
      * Update readme and default hyperparameters.
      
      * Reformatting code with black.
      
      * Update for multi-gpu trianing.
      
      * Apply suggestions from code review
      
      * improgve sampling
      
      * fix autocast
      
      * improve sampling more
      
      * fix saving
      
      * actuallu fix saving
      
      * fix saving
      
      * improve dataset
      
      * fix collate fun
      
      * fix collate_fn
      
      * fix collate fn
      
      * fix key name
      
      * fix dataset
      
      * fix collate fn
      
      * concat batch in collate fn
      
      * add grad ckpt
      
      * add option for 8bit adam
      
      * do two forward passes for prior preservation
      
      * Revert "do two forward passes for prior preservation"
      
      This reverts commit 661ca4677e6dccc4ad596c2ee6ca4baad4159e95.
      
      * add option for prior_loss_weight
      
      * add option for clip grad norm
      
      * add more comments
      
      * update readme
      
      * update readme
      
      * Apply suggestions from code review
      Co-authored-by: default avatarPatrick von Platen <patrick.v.platen@gmail.com>
      
      * add docstr for dataset
      
      * update the saving logic
      
      * Update examples/dreambooth/README.md
      
      * remove unused imports
      Co-authored-by: default avatarSuraj Patil <surajp815@gmail.com>
      Co-authored-by: default avatarPatrick von Platen <patrick.v.platen@gmail.com>
      3b747de8
  29. 16 Sep, 2022 1 commit
  30. 15 Sep, 2022 1 commit
    • Kashif Rasul's avatar
      Karras VE, DDIM and DDPM flax schedulers (#508) · b34be039
      Kashif Rasul authored
      * beta never changes removed from state
      
      * fix typos in docs
      
      * removed unused var
      
      * initial ddim flax scheduler
      
      * import
      
      * added dummy objects
      
      * fix style
      
      * fix typo
      
      * docs
      
      * fix typo in comment
      
      * set return type
      
      * added flax ddom
      
      * fix style
      
      * remake
      
      * pass PRNG key as argument and split before use
      
      * fix doc string
      
      * use config
      
      * added flax Karras VE scheduler
      
      * make style
      
      * fix dummy
      
      * fix ndarray type annotation
      
      * replace returns a new state
      
      * added lms_discrete scheduler
      
      * use self.config
      
      * add_noise needs state
      
      * use config
      
      * use config
      
      * docstring
      
      * added flax score sde ve
      
      * fix imports
      
      * fix typos
      b34be039