InvokeAI/ldm/invoke
Lincoln Stein 8c9764476c first phase of source tree restructure
This is the first phase of a big shifting of files and directories
in the source tree.

You will need to run `pip install -e .` before the code will work again!

Here's what's in the current commit:

1) Remove a lot of dead code that dealt with checkpoint and safetensor loading.
2) Entire ckpt_generator hierarchy is now gone!
3) ldm.invoke.generator.*   => invokeai.generator.*
4) ldm.model.*              => invokeai.model.*
5) ldm.invoke.model_manager => invokeai.model.model_manager

6) In addition, a number of frequently-accessed classes can be imported
   from the invokeai.model and invokeai.generator modules:

   from invokeai.generator import ( Generator, PipelineIntermediateState,
                                    StableDiffusionGeneratorPipeline, infill_methods)

   from invokeai.models import ( ModelManager, SDLegacyType
                                 InvokeAIDiffuserComponent, AttentionMapSaver,
                                 DDIMSampler, KSampler, PLMSSampler,
                                 PostprocessingSettings )
2023-02-27 23:52:46 -05:00
..
app first phase of source tree restructure 2023-02-27 23:52:46 -05:00
config first phase of source tree restructure 2023-02-27 23:52:46 -05:00
restoration Change denoise_str to an arg instead of a class variable 2023-02-09 20:16:23 +13:00
training fix crash in textual inversion with "num_samples=0" error 2023-02-22 11:29:30 -05:00
__init__.py fix(xformers): shush about not having Triton available. 2023-02-17 17:41:27 -08:00
_version.py first phase of source tree restructure 2023-02-27 23:52:46 -05:00
args.py first phase of source tree restructure 2023-02-27 23:52:46 -05:00
ckpt_to_diffuser.py first phase of source tree restructure 2023-02-27 23:52:46 -05:00
CLI.py first phase of source tree restructure 2023-02-27 23:52:46 -05:00
concepts_lib.py improve embed trigger token not found error 2023-01-19 15:46:58 -05:00
conditioning.py first phase of source tree restructure 2023-02-27 23:52:46 -05:00
devices.py fix(diffusers_pipeline): ensure cuda.get_mem_info always gets a specific device index. 2023-02-17 16:56:15 -08:00
globals.py first phase of source tree restructure 2023-02-27 23:52:46 -05:00
image_util.py Global replace [ \t]+$, add "GB" (#1751) 2022-12-19 16:36:39 +00:00
log.py rename all modules from ldm.dream to ldm.invoke 2022-10-08 11:37:23 -04:00
merge_diffusers.py first phase of source tree restructure 2023-02-27 23:52:46 -05:00
offloading.py new OffloadingDevice loads one model at a time, on demand (#2596) 2023-02-16 23:48:27 +00:00
patchmatch.py defer patchmatch loading (#2039) 2022-12-20 15:32:35 -08:00
pngwriter.py correct bug when trying to enhance JPG images (#1928) 2022-12-11 13:48:47 -05:00
readline.py Add symmetry to generation (#2675) 2023-02-20 07:33:19 -05:00
seamless.py use 🧨diffusers model (#1583) 2023-01-15 09:22:46 -05:00
server_legacy.py Global replace [ \t]+$, add "GB" (#1751) 2022-12-19 16:36:39 +00:00
server.py Global replace [ \t]+$, add "GB" (#1751) 2022-12-19 16:36:39 +00:00
txt2mask.py remove dead code 2023-02-03 17:35:35 -05:00