mirror of
https://github.com/princeton-nlp/tree-of-thought-llm
synced 2024-11-16 13:42:27 +00:00
14 lines
234 B
Python
14 lines
234 B
Python
|
DATA_PATH = './data'
|
||
|
|
||
|
class Task:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def __len__(self) -> int:
|
||
|
pass
|
||
|
|
||
|
def get_input(self, idx: int) -> str:
|
||
|
pass
|
||
|
|
||
|
def test_output(self, idx: int, output: str):
|
||
|
pass
|