File size: 188 Bytes
87b37ba | 1 2 3 4 5 6 7 | class DummyModel:
def __init__(self, label="LABEL_0"):
self.label = label
def __call__(self, text: str):
return {"label": self.label, "score": 1.0, "input": text}
|
87b37ba | 1 2 3 4 5 6 7 | class DummyModel:
def __init__(self, label="LABEL_0"):
self.label = label
def __call__(self, text: str):
return {"label": self.label, "score": 1.0, "input": text}
|