Source code for HALF.Interfaces.IOracle

from abc import ABC, abstractmethod

from typing import List,Dict

[docs]class IOracle(ABC): """ Asbtract class for the Oracle, labeller of the data """
[docs] @abstractmethod def query(self, list_dict: List[Dict]): """Query new labels for passed data Args: list_dict (List[Dict]) : The points to label """ # how do we query it ? pass