Spaces:
Sleeping
Sleeping
File size: 698 Bytes
76c1bd0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Source: https://github.com/wayveai/LingoQA/blob/main/benchmark/constants.py
"""
LingoQA datasets are stored in Google Cloud.
This file provides the download link for the datasets, as well as reference keys for the data.
"""
from enum import Enum
LINGOQA_TEST = "https://drive.usercontent.google.com/u/1/uc?id=1I8u6uYysQUstoVYZapyRQkXmOwr-AG3d&export=download"
LINGO_JUDGE = "wayveai/Lingo-Judge"
class Keys(str, Enum):
question_id = "question_id"
segment_id = "segment_id"
question = "question"
answer = "answer"
references = "references"
prediction = "prediction"
max_score = "max_score"
score = "score"
probability = "probability"
correct = "correct" |