BayesTensor's picture
Upload folder using huggingface_hub
9d5b280 verified
raw
history blame contribute delete
178 Bytes
def process_docs(dataset):
def _helper(doc):
doc["choices"] = [doc["Option A"], doc["Option B"], doc["Option C"]]
return doc
return dataset.map(_helper)