Spaces:
Sleeping
Sleeping
File size: 494 Bytes
2e6bf26 946fdeb 2e6bf26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from typing import Tuple
import spaces
from accelerate import Accelerator
accelerator = Accelerator()
device = accelerator.device
class Grader:
def info(self) -> str:
raise NotImplementedError("Method info not implemented")
def grade(self, question: str, answer: str) -> Tuple[float, str]:
raise NotImplementedError("Method grade not implemented")
def __call__(self, question: str, answer: str) -> Tuple[float, str]:
return self.grade(question, answer)
|