-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.json
126 lines (126 loc) · 3.2 KB
/
configuration.json
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"port_number": 8080,
"accounts": [
{"username": "User1", "password": "passwordxx1"},
{"username": "User2", "password": "passwordxx2"},
{"username": "User3", "password": "passwordxx3"}
],
"mongodb_settings_password-protected-db": {
"url": "username",
"port": "[email protected]/database_name",
"database": "database_name",
"collection": "collection_name",
"items_per_query": 10
},"mongodb_settings": {
"url": "localhost",
"port": 27027,
"database": "database_name",
"collection": "collection_name",
"items_per_query": 10
},
"consolidation_mode": false,
"guideline_at_start": true,
"annotation_mode": "sentiment",
"mode_settings": {
"sentiment": {
"standard_deviation_relevance": 0.31,
"polarity_threshold": 0.05,
"same_polarity_annotation": 3,
"data_specifications": {
"fields_to_display_text": [["body"]],
"fields_to_display_entity": [["entity"]],
"fields_to_query": ["body", "entity"],
"fields_to_store_in": ["sentiment","relevance"]
},
"interface_settings": {
"idontknow_value": 4
}
},
"sentiment-news": {
"standard_deviation_relevance": 0.20,
"polarity_threshold": 0.05,
"same_polarity_annotation": 3,
"data_specifications": {
"fields_to_display_text": [["text"]],
"fields_to_display_entity": [["entity"]],
"fields_to_display_title": [["title"]],
"fields_to_query": ["text", "title","entity"],
"fields_to_store_in": ["sentiment","relevance"]
},
"interface_settings": {
"idontknow_value": 4
}
},
"bi-classification": {
"data_specifications": {
"fields_to_display_text": [["body"]],
"fields_to_query": ["body"],
"fields_to_store_in": ["investor_sentiment"]
},
"interface_settings": {
"idontknow_value": 4,
"class_names": [
{
"class_name": "Bullish",
"annotation_value": 1,
"button_color_bg": "#FFB266",
"button_color_border": "#FF8000"
},
{
"class_name": "Bearish",
"annotation_value": 2,
"button_color_bg": "#0E92A1",
"button_color_border": "#09656F"
}
],
"button_at_side": false
}
},
"tri-classification": {
"data_specifications": {
"fields_to_display_text": [["body"]],
"fields_to_query": ["body"],
"fields_to_store_in": ["investor_sentiment"]
},
"interface_settings": {
"idontknow_value": 4,
"class_names": [
{
"class_name": "Bullish",
"annotation_value": 1,
"button_color_bg": "#FFB266",
"button_color_border": "#FF8000"
},
{
"class_name": "Bearish",
"annotation_value": 2,
"button_color_bg": "#0E92A1",
"button_color_border": "#09656F"
},
{
"class_name": "Neutral",
"annotation_value": 3,
"button_color_bg": "#006633",
"button_color_border": "#003319"
}
],
"button_at_side": false
}
},
"textual-annotation": {
"data_specifications": {
"fields_to_display_text": [["body"]],
"fields_to_query": ["body"],
"fields_to_store_in": ["name_of_your_choice_textual_annotation"]
},
"interface_settings": {
"idontknow_value": 4
}
}
},
"consolidation_settings": {
"minimum_annotations": 3,
"standard_deviation": 0.21,
"accepted_annotators": [0,1,2]
}
}