File size: 347 Bytes
8fd2f2f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from modules.params.params_mixin import AsDictMixin

class VFIParams(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