43ntropy
/

43ntropy's picture
Duplicate from epfl-neuroai/NEvo
1e2bb2f
Raw
History Blame Contribute Delete
220 Bytes
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]:
...