Merge branch 'lstein/recognize-legacy-sampler-names' into release/invokeai-3-0-alpha

This commit is contained in:
Lincoln Stein 2023-07-01 21:45:39 -04:00
commit b2775d6b4c

View File

@ -4,6 +4,8 @@ import argparse
import shlex import shlex
from argparse import ArgumentParser from argparse import ArgumentParser
# note that this includes both old sampler names and new scheduler names
# in order to be able to parse both 2.0 and 3.0-pre-nodes versions of invokeai.init
SAMPLER_CHOICES = [ SAMPLER_CHOICES = [
"ddim", "ddim",
"ddpm", "ddpm",
@ -27,6 +29,15 @@ SAMPLER_CHOICES = [
"dpmpp_sde", "dpmpp_sde",
"dpmpp_sde_k", "dpmpp_sde_k",
"unipc", "unipc",
"k_dpm_2_a",
"k_dpm_2",
"k_dpmpp_2_a",
"k_dpmpp_2",
"k_euler_a",
"k_euler",
"k_heun",
"k_lms",
"plms",
] ]
PRECISION_CHOICES = [ PRECISION_CHOICES = [