Spaces:
Runtime error
Runtime error
from abc import ABC, abstractmethod | |
from typing import Dict, List | |
class IFacialMocapPoseConverter(ABC): | |
def convert(self, ifacialmocap_pose: Dict[str, float]) -> List[float]: | |
pass | |
def init_pose_converter_panel(self, parent): | |
pass |