Contents:
SDK:
Examples:
from abc import ABC, abstractmethod from typing import List, Any [docs] class IFeature(ABC): [docs] @abstractmethod def extract_features(self) -> List[Any]: pass