from __future__ import annotations from abc import ABC, abstractmethod from typing import Any class Scorer(ABC): @abstractmethod def score(self, videos: Any, target: Any, **kwargs) -> list[float]: ...