Datasets:
tau
/

Modalities:
Text
Libraries:
Datasets
fs / configs /scrolls.py
yuvalkirstain's picture
a bit of cleaning
a6a875e
raw
history blame
538 Bytes
from configs.fs import FSConfig
class ScrollsConfig(FSConfig):
def __init__(self, **kwargs):
super().__init__(**kwargs)
@property
def source_key(self):
return "input"
@property
def target_key(self):
return "output"
@property
def train_file(self):
return "train.jsonl"
@property
def validation_file(self):
return "validation.jsonl"
@property
def test_file(self):
return "test.jsonl"
@property
def id_key(self):
return "pid"