1. 08 Dec, 2022 1 commit
    • Andrew Ryan's avatar
      Add latent upscale option to img2img · 358a8628
      Andrew Ryan authored
      Recently, the option to do latent upscale was added to txt2img highres
      fix. This feature runs by scaling the latent sample of the image, and
      then running a second pass of img2img.
      
      But, in this edition of highres fix, the image and parameters cannot be
      changed between the first pass and second pass. We might want to do a
      fixup in img2img before doing the second pass, or might want to run the
      second pass at a different resolution.
      
      This change adds the option for img2img to perform its upscale in latent
      space, rather than image space, giving very similar results to highres
      fix with latent upscale.  The result is not exactly the same because
      there is an additional latent -> decoder -> image -> encoder -> latent
      that won't happen in highres fix, but this conversion has relatively
      small losses
      358a8628
  2. 04 Dec, 2022 1 commit
  3. 03 Dec, 2022 28 commits
  4. 02 Dec, 2022 4 commits
  5. 01 Dec, 2022 3 commits
    • space-nuko's avatar
      be2e6de9
    • brkirch's avatar
      Fix run as root flag · bef36597
      brkirch authored
      Even though -f enables running webui.sh as root, the -f flag will also be passed to launch.py, causing it to exit with a usage message. This adds a line to launch.py to remove the -f flag if present.
      
      In addition to the above, all the letters in the command line arguments after each '-' were being processed for 'f' and "illegal option" was displayed for each letter that didn't match. Instead, this commit silences those errors and stops processing if the first flag doesn't start with '-f'.
      bef36597
    • brkirch's avatar
      Add support for macOS (Darwin) in launch.py · 79953e9b
      brkirch authored
      79953e9b
  6. 30 Nov, 2022 3 commits