tidy: use lowercase for tcd scheduler identifier

This commit is contained in:
psychedelicious
2024-04-03 17:03:02 +11:00
parent 8c509295f9
commit 51e515b925
3 changed files with 3 additions and 3 deletions

View File

@ -41,5 +41,5 @@ SCHEDULER_MAP = {
"dpmpp_sde_k": (DPMSolverSDEScheduler, {"use_karras_sigmas": True, "noise_sampler_seed": 0}),
"unipc": (UniPCMultistepScheduler, {"cpu_only": True}),
"lcm": (LCMScheduler, {}),
"TCD": (TCDScheduler, {}),
"tcd": (TCDScheduler, {}),
}