sarahyurick commited on
Commit
0f93018
1 Parent(s): 8547b30

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +89 -0
config.json ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model": "microsoft/DeBERTa-v3-base",
3
+ "config_path": null,
4
+ "fc_dropout": 0.2,
5
+ "targets": [
6
+ "task_type_1",
7
+ "task_type_2",
8
+ "task_type_prob",
9
+ "creativity_scope",
10
+ "reasoning",
11
+ "contextual_knowledge",
12
+ "number_of_few_shots",
13
+ "domain_knowledge",
14
+ "no_label_reason",
15
+ "constraint_ct",
16
+ "prompt_complexity_score"
17
+ ],
18
+ "target_sizes": {
19
+ "task_type": 12,
20
+ "creativity_scope": 3,
21
+ "reasoning": 2,
22
+ "contextual_knowledge": 2,
23
+ "number_of_few_shots": 6,
24
+ "domain_knowledge": 4,
25
+ "no_label_reason": 1,
26
+ "constraint_ct": 2
27
+ },
28
+ "task_type_map": {
29
+ "0": "Brainstorming",
30
+ "1": "Chatbot",
31
+ "2": "Classification",
32
+ "3": "Closed QA",
33
+ "4": "Code Generation",
34
+ "5": "Extraction",
35
+ "6": "Open QA",
36
+ "7": "Other",
37
+ "8": "Rewrite",
38
+ "9": "Summarization",
39
+ "10": "Text Generation",
40
+ "11": "Unknown"
41
+ },
42
+ "weights_map": {
43
+ "creativity_scope": [2, 1, 0],
44
+ "reasoning": [0, 1],
45
+ "contextual_knowledge": [0, 1],
46
+ "number_of_few_shots": [0, 1, 2, 3, 4, 5],
47
+ "domain_knowledge": [3, 1, 2, 0],
48
+ "no_label_reason": [0],
49
+ "constraint_ct": [1, 0]
50
+ },
51
+ "divisor_map": {
52
+ "creativity_scope": 2,
53
+ "reasoning": 1,
54
+ "contextual_knowledge": 1,
55
+ "number_of_few_shots": 1,
56
+ "domain_knowledge": 3,
57
+ "no_label_reason": 1,
58
+ "constraint_ct": 1
59
+ },
60
+ "model_output_type": {
61
+ "task_type_1": "string",
62
+ "task_type_2": "string",
63
+ "task_type_prob": "numeric",
64
+ "creativity_scope": "numeric",
65
+ "reasoning": "numeric",
66
+ "contextual_knowledge": "numeric",
67
+ "number_of_few_shots": "numeric",
68
+ "domain_knowledge": "numeric",
69
+ "no_label_reason": "numeric",
70
+ "constraint_ct": "numeric",
71
+ "prompt_complexity_score": "numeric"
72
+ },
73
+ "creativity_score_map": {"High": 0, "Low": 1, "No": 2},
74
+ "reasoning_map": {"Unknown": -1, "No": 0, "Yes": 1},
75
+ "contextual_knowledge_map": {"Unknown": -1, "No": 0, "Yes": 1},
76
+ "number_of_few_shots_map": {
77
+ "0.0": 0,
78
+ "1.0": 1,
79
+ "2.0": 2,
80
+ "3.0": 3,
81
+ "4.0": 4,
82
+ "5.0": 5
83
+ },
84
+ "domain_knowledge_map": {"High": 0, "Low": 1, "Medium": 2, "No": 3},
85
+ "no_label_reason_map": {"Unknown": 0},
86
+ "constraint_ct_map": {"1.0": 0, "Unknown": 1},
87
+ "pretrained": true,
88
+ "drop_out": false
89
+ }