forked from IllinoisSocialMediaMacroscope/smm-smile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautophrase.json
More file actions
147 lines (147 loc) · 3.74 KB
/
Copy pathautophrase.json
File metadata and controls
147 lines (147 loc) · 3.74 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"path": "autophrase",
"title": "Automated Phrase Mining",
"imgURL": "bootstrap/img/logo/NLP/phrase.jpg",
"wiki": "https://arxiv.org/abs/1702.04457",
"introduction": [
"As one of the fundamental tasks in text analysis, phrase mining aims at extracting quality",
"phrases from a text corpus. Phrase mining is important in various tasks such as information",
"extraction/retrieval, taxonomy construction, and topic modeling."
],
"result_path": "/NLP/autophrase/",
"results": [
{
"acronym": "config",
"name": "configuration",
"download": true,
"img": false,
"preview": false,
"config": true
},
{
"acronym": "AutoPhrase",
"name": "complete list of phrase extracted",
"download": true,
"img": false,
"preview": true,
"dataTable": true,
"config": false
},
{
"acronym": "AutoPhrase_multi-words",
"name": "phrase with multiple words",
"download": true,
"img": false,
"preview": false,
"config": false
},
{
"acronym": "AutoPhrase_single-word",
"name": "phrase that has single word",
"download": true,
"img": false,
"preview": false,
"config": false
},
{
"acronym": "div",
"name": "visualization",
"download": true,
"img": true,
"preview": false,
"config": false
},
{
"acronym": "segmentation",
"name": "model",
"download": true,
"img": false,
"preview": false,
"config": false
},
{
"acronym": "token_mapping",
"name": "token mapping",
"download": true,
"img": false,
"preview": false,
"config": false
}
],
"args": [
"minSup",
"algorithm"
],
"get": {
"containers": [
{
"container-name": "minimum-support",
"container-label-name": "Minimum Support",
"input": {
"type": "range",
"min": "1",
"max": "100",
"value": "3",
"name": "minSup",
"onchange": "rangeNode.value=value",
"id": "minSup",
"output_id": "rangeNode"
}
},
{
"container-name": "",
"container-label-name": "Algorithm",
"input": {
"type": "select",
"name": "algorithm",
"id": "algorithm",
"options": [
{
"value": "Please Select...",
"label": "Please Select..."
},
{
"value": "autophrase",
"label": "AutoPhrase (Automated Phrase Mining from Massive Text Corpora)"
}
]
}
}
],
"buttonGroups": [
{
"id": "clear",
"class": "btn btn-primary",
"value": "Clear",
"style": "margin: auto 5px;",
"onclick": "customized_reset();"
},
{
"id": "submit",
"class": "btn btn-danger",
"value": "Submit",
"style": "margin: auto 5px;"
}
],
"citation": {
"trigger_id": "algorithm",
"content": [
{
"text": [
"Shang, J., Liu, J., Jiang, M., Ren, X., Voss, C. R., & Han, J. (2017).<a href=\"https://arxiv.org/pdf/1702.04457.pdf\" target=\"_blank\">Automated phrase mining from massive text corpora. arXiv preprint arXiv:1702.04457.</a>"
],
"condition": "autophrase"
}
]
}
},
"post": {
"batch_config": {
"batch_action": "/bin/bash",
"batch_script": "auto_phrase.sh",
"batch_job_definition": "arn:aws:batch:us-west-2:083781070261:job-definition/smile_autophrase_dev:2",
"batch_job_queue": "arn:aws:batch:us-west-2:083781070261:job-queue/SMILE_batch"
},
"rabbitmq_queue": "autophrase"
}
}