File size: 355 Bytes
8fd2f2f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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