StreamingSVD / modules /params /i2v_enhance.py
lev1's picture
Initial commit
8fd2f2f
raw
history blame
355 Bytes
from modules.params.params_mixin import AsDictMixin
class I2VEnhanceParams(AsDictMixin):
def __init__(self,
ckpt_path_local: str = "",
ckpt_path_global: str = "",
) -> None:
super().__init__()
self.ckpt_path_local = ckpt_path_local
self.ckpt_path_global = ckpt_path_global