Added initial support for finetuning wan i2v WIP

This commit is contained in:
Jaret Burkett
2025-04-07 20:34:38 -06:00
parent 38ad5a4644
commit a8680c75eb
10 changed files with 575 additions and 286 deletions

View File

@@ -7,11 +7,12 @@ from toolkit.paths import TOOLKIT_ROOT
import importlib
import pkgutil
from toolkit.models.wan21 import Wan21
from toolkit.models.wan21 import Wan21, Wan21I2V
from toolkit.models.cogview4 import CogView4
BUILT_IN_MODELS = [
Wan21,
Wan21I2V,
CogView4,
]