More guidance work. Improved LoRA module resolver for unet. Added vega mappings and LoRA training for it. Various other bigfixes and changes

This commit is contained in:
Jaret Burkett
2023-12-15 06:02:10 -07:00
parent e5177833b2
commit 39870411d8
14 changed files with 3501 additions and 106 deletions

View File

@@ -46,8 +46,11 @@ sdxl_sampler_config = {
def get_sampler(
sampler: str,
kwargs: dict = None,
):
sched_init_args = {}
if kwargs is not None:
sched_init_args.update(kwargs)
if sampler.startswith("k_"):
sched_init_args["use_karras_sigmas"] = True