-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconstant.py
More file actions
67 lines (65 loc) · 2.26 KB
/
constant.py
File metadata and controls
67 lines (65 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
MAX_SAMPLE_THRESHOLD = 100000
MAX_SAMPLE = {
"abstract_narrative_understanding": MAX_SAMPLE_THRESHOLD,
"elementary_math_qa": MAX_SAMPLE_THRESHOLD,
"linguistics_puzzles": MAX_SAMPLE_THRESHOLD,
"strategyqa": MAX_SAMPLE_THRESHOLD,
"cnn_dailymail": 1000,
"formal_fallacies_syllogisms_negation": MAX_SAMPLE_THRESHOLD,
"logical_deduction": MAX_SAMPLE_THRESHOLD,
"topical_chat": 1000,
"contextual_parametric_knowledge_conflicts": MAX_SAMPLE_THRESHOLD,
"gsm8k": MAX_SAMPLE_THRESHOLD,
"object_counting": MAX_SAMPLE_THRESHOLD,
"vitaminc_fact_verification": MAX_SAMPLE_THRESHOLD,
"cs_algorithms": MAX_SAMPLE_THRESHOLD,
"language_identification": MAX_SAMPLE_THRESHOLD,
"question_selection": MAX_SAMPLE_THRESHOLD,
"alpaca": 1000,
"news_commentary_es": 1000,
"news_commentary_it": 1000,
"news_commentary_de": 1000,
"tracking_shuffled_objects": MAX_SAMPLE_THRESHOLD,
"goal_step_wikihow": MAX_SAMPLE_THRESHOLD,
"disfl_qa": MAX_SAMPLE_THRESHOLD,
"unit_conversion": MAX_SAMPLE_THRESHOLD,
"paragraph_segmentation": MAX_SAMPLE_THRESHOLD,
"reasoning_about_colored_objects": MAX_SAMPLE_THRESHOLD,
"epistemic_reasoning": MAX_SAMPLE_THRESHOLD,
"play_dialog_same_or_different": MAX_SAMPLE_THRESHOLD,
"winowhy": MAX_SAMPLE_THRESHOLD,
"composite_3": MAX_SAMPLE_THRESHOLD,
"composite_5": MAX_SAMPLE_THRESHOLD,
"composite_10": MAX_SAMPLE_THRESHOLD,
}
# WARNING: The tasks order in the list will influence MeteoRA model, DO NOT change the order.
METEORA_TASKS = [
"abstract_narrative_understanding",
"alpaca",
"cnn_dailymail",
"contextual_parametric_knowledge_conflicts",
"cs_algorithms",
"disfl_qa",
"elementary_math_qa",
"epistemic_reasoning",
"formal_fallacies_syllogisms_negation",
"goal_step_wikihow",
"gsm8k",
"language_identification",
"linguistics_puzzles",
"logical_deduction",
"news_commentary_de",
"news_commentary_es",
"news_commentary_it",
"object_counting",
"paragraph_segmentation",
"play_dialog_same_or_different",
"question_selection",
"reasoning_about_colored_objects",
"strategyqa",
"topical_chat",
"tracking_shuffled_objects",
"unit_conversion",
"vitaminc_fact_verification",
"winowhy",
]