File size: 233 Bytes
1f213fe
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from abc import ABC, abstractmethod
from typing import Any, Dict


class BaseTask(ABC):
    @abstractmethod
    def grade(self, final_state: Dict[str, Any], org_config: Dict[str, Any], scenario: Dict[str, Any]) -> float:
        ...