Jerado commited on
Commit
9e8e3a4
1 Parent(s): 32aadb6

Add BERTopic model

Browse files
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ tags:
4
+ - bertopic
5
+ library_name: bertopic
6
+ pipeline_tag: text-classification
7
+ ---
8
+
9
+ # BERTopic
10
+
11
+ This is a [BERTopic](https://github.com/MaartenGr/BERTopic) model.
12
+ BERTopic is a flexible and modular topic modeling framework that allows for the generation of easily interpretable topics from large datasets.
13
+
14
+ ## Usage
15
+
16
+ To use this model, please install BERTopic:
17
+
18
+ ```
19
+ pip install -U bertopic
20
+ ```
21
+
22
+ You can use the model as follows:
23
+
24
+ ```python
25
+ from bertopic import BERTopic
26
+ topic_model = BERTopic.load("Jerado/BERTopic")
27
+
28
+ topic_model.get_topic_info()
29
+ ```
30
+
31
+ ## Topic overview
32
+
33
+ * Number of topics: 17
34
+ * Number of training documents: 1000
35
+
36
+ <details>
37
+ <summary>Click here for an overview of all topics.</summary>
38
+
39
+ | Topic ID | Topic Keywords | Topic Frequency | Label |
40
+ |----------|----------------|-----------------|-------|
41
+ | -1 | theism - much - way - think - just | 15 | -1_theism_much_way_think |
42
+ | 0 | nhl - playoffs - rangers - hockey - league | 304 | 0_nhl_playoffs_rangers_hockey |
43
+ | 1 | performance - ram - drivers - monitor - speed | 92 | 1_performance_ram_drivers_monitor |
44
+ | 2 | x11r5 - hyperhelp - windows - pc - application | 82 | 2_x11r5_hyperhelp_windows_pc |
45
+ | 3 | dos - windows - harddisk - disk - software | 82 | 3_dos_windows_harddisk_disk |
46
+ | 4 | amp - amps - amplifier - ampere - current | 75 | 4_amp_amps_amplifier_ampere |
47
+ | 5 | scripture - christians - sin - bible - commandment | 44 | 5_scripture_christians_sin_bible |
48
+ | 6 | patients - biological - medicine - studies - doctors | 41 | 6_patients_biological_medicine_studies |
49
+ | 7 | nasa - solar - space - shuttle - orbiting | 39 | 7_nasa_solar_space_shuttle |
50
+ | 8 | armenians - armenian - armenia - turks - genocide | 38 | 8_armenians_armenian_armenia_turks |
51
+ | 9 | guns - gun - amendment - constitution - laws | 36 | 9_guns_gun_amendment_constitution |
52
+ | 10 | - - - - | 33 | 10____ |
53
+ | 11 | motorcycle - bikes - cobralinks - bike - riding | 32 | 11_motorcycle_bikes_cobralinks_bike |
54
+ | 12 | encryption - security - encrypted - privacy - secure | 24 | 12_encryption_security_encrypted_privacy |
55
+ | 13 | contacted - address - mail - contact - email | 23 | 13_contacted_address_mail_contact |
56
+ | 14 | paganism - faith - christianity - christians - atheists | 21 | 14_paganism_faith_christianity_christians |
57
+ | 15 | action - fbi - batf - war - president | 19 | 15_action_fbi_batf_war |
58
+
59
+ </details>
60
+
61
+ ## Training hyperparameters
62
+
63
+ * calculate_probabilities: False
64
+ * language: english
65
+ * low_memory: False
66
+ * min_topic_size: 10
67
+ * n_gram_range: (1, 1)
68
+ * nr_topics: None
69
+ * seed_topic_list: [['drug', 'cancer', 'drugs', 'doctor'], ['windows', 'drive', 'dos', 'file'], ['space', 'launch', 'orbit', 'lunar']]
70
+ * top_n_words: 10
71
+ * verbose: False
72
+ * zeroshot_min_similarity: 0.7
73
+ * zeroshot_topic_list: None
74
+
75
+ ## Framework versions
76
+
77
+ * Numpy: 1.23.5
78
+ * HDBSCAN: 0.8.33
79
+ * UMAP: 0.5.6
80
+ * Pandas: 2.0.3
81
+ * Scikit-Learn: 1.2.2
82
+ * Sentence-transformers: 2.7.0
83
+ * Transformers: 4.40.1
84
+ * Numba: 0.58.1
85
+ * Plotly: 5.15.0
86
+ * Python: 3.10.12
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "calculate_probabilities": false,
3
+ "language": "english",
4
+ "low_memory": false,
5
+ "min_topic_size": 10,
6
+ "n_gram_range": [
7
+ 1,
8
+ 1
9
+ ],
10
+ "nr_topics": null,
11
+ "seed_topic_list": [
12
+ [
13
+ "drug",
14
+ "cancer",
15
+ "drugs",
16
+ "doctor"
17
+ ],
18
+ [
19
+ "windows",
20
+ "drive",
21
+ "dos",
22
+ "file"
23
+ ],
24
+ [
25
+ "space",
26
+ "launch",
27
+ "orbit",
28
+ "lunar"
29
+ ]
30
+ ],
31
+ "top_n_words": 10,
32
+ "verbose": false,
33
+ "zeroshot_min_similarity": 0.7,
34
+ "zeroshot_topic_list": null,
35
+ "embedding_model": "sentence-transformers/all-MiniLM-L6-v2"
36
+ }
ctfidf.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5f54d7d6a4bf6ff2418e5b7baf7d85d9153b24c91e8c86295cc422045b90ab2
3
+ size 633740
ctfidf_config.json ADDED
The diff for this file is too large to render. See raw diff
 
topic_embeddings.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08994dd95eccf0caa11c760ed36f00b14a6e1cf2fb87f4f20b62dac6365b528c
3
+ size 26200
topics.json ADDED
@@ -0,0 +1,1848 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "topic_representations": {
3
+ "-1": [
4
+ [
5
+ "theism",
6
+ 0.30830118060112
7
+ ],
8
+ [
9
+ "much",
10
+ 0.11821360886096954
11
+ ],
12
+ [
13
+ "way",
14
+ 0.11188830435276031
15
+ ],
16
+ [
17
+ "think",
18
+ 0.107994943857193
19
+ ],
20
+ [
21
+ "just",
22
+ 0.10464600473642349
23
+ ],
24
+ [
25
+ "about",
26
+ 0.10198339819908142
27
+ ],
28
+ [
29
+ "we",
30
+ 0.09992296248674393
31
+ ],
32
+ [
33
+ "get",
34
+ 0.09341591596603394
35
+ ],
36
+ [
37
+ "to",
38
+ 0.09218429028987885
39
+ ],
40
+ [
41
+ "many",
42
+ 0.08954227715730667
43
+ ]
44
+ ],
45
+ "0": [
46
+ [
47
+ "nhl",
48
+ 0.4109545946121216
49
+ ],
50
+ [
51
+ "playoffs",
52
+ 0.33386147022247314
53
+ ],
54
+ [
55
+ "rangers",
56
+ 0.3331052362918854
57
+ ],
58
+ [
59
+ "hockey",
60
+ 0.2988777458667755
61
+ ],
62
+ [
63
+ "league",
64
+ 0.2456500381231308
65
+ ],
66
+ [
67
+ "players",
68
+ 0.23603765666484833
69
+ ],
70
+ [
71
+ "morris",
72
+ 0.23064304888248444
73
+ ],
74
+ [
75
+ "season",
76
+ 0.2290617972612381
77
+ ],
78
+ [
79
+ "mike",
80
+ 0.2238575965166092
81
+ ],
82
+ [
83
+ "should",
84
+ 0.20474524796009064
85
+ ]
86
+ ],
87
+ "1": [
88
+ [
89
+ "performance",
90
+ 0.3465028405189514
91
+ ],
92
+ [
93
+ "ram",
94
+ 0.3189718425273895
95
+ ],
96
+ [
97
+ "drivers",
98
+ 0.30930599570274353
99
+ ],
100
+ [
101
+ "monitor",
102
+ 0.2861299514770508
103
+ ],
104
+ [
105
+ "speed",
106
+ 0.24740548431873322
107
+ ],
108
+ [
109
+ "card",
110
+ 0.20975802838802338
111
+ ],
112
+ [
113
+ "windows",
114
+ 0.20365996658802032
115
+ ],
116
+ [
117
+ "faster",
118
+ 0.18902413547039032
119
+ ],
120
+ [
121
+ "screen",
122
+ 0.17930296063423157
123
+ ],
124
+ [
125
+ "mac",
126
+ 0.17156070470809937
127
+ ]
128
+ ],
129
+ "2": [
130
+ [
131
+ "x11r5",
132
+ 0.3972001373767853
133
+ ],
134
+ [
135
+ "hyperhelp",
136
+ 0.3004513382911682
137
+ ],
138
+ [
139
+ "windows",
140
+ 0.27462705969810486
141
+ ],
142
+ [
143
+ "pc",
144
+ 0.2738622725009918
145
+ ],
146
+ [
147
+ "application",
148
+ 0.267756849527359
149
+ ],
150
+ [
151
+ "program",
152
+ 0.2636319100856781
153
+ ],
154
+ [
155
+ "documentation",
156
+ 0.24179965257644653
157
+ ],
158
+ [
159
+ "wchart",
160
+ 0.23440566658973694
161
+ ],
162
+ [
163
+ "code",
164
+ 0.2283349335193634
165
+ ],
166
+ [
167
+ "computer",
168
+ 0.2241922914981842
169
+ ]
170
+ ],
171
+ "3": [
172
+ [
173
+ "dos",
174
+ 0.2500118613243103
175
+ ],
176
+ [
177
+ "windows",
178
+ 0.21454110741615295
179
+ ],
180
+ [
181
+ "harddisk",
182
+ 0.2092200219631195
183
+ ],
184
+ [
185
+ "disk",
186
+ 0.19229228794574738
187
+ ],
188
+ [
189
+ "software",
190
+ 0.17417097091674805
191
+ ],
192
+ [
193
+ "files",
194
+ 0.15314951539039612
195
+ ],
196
+ [
197
+ "file",
198
+ 0.1509244441986084
199
+ ],
200
+ [
201
+ "format",
202
+ 0.14597195386886597
203
+ ],
204
+ [
205
+ "program",
206
+ 0.13542607426643372
207
+ ],
208
+ [
209
+ "drives",
210
+ 0.13255532085895538
211
+ ]
212
+ ],
213
+ "4": [
214
+ [
215
+ "amp",
216
+ 0.597823441028595
217
+ ],
218
+ [
219
+ "amps",
220
+ 0.5771355628967285
221
+ ],
222
+ [
223
+ "amplifier",
224
+ 0.5527940392494202
225
+ ],
226
+ [
227
+ "ampere",
228
+ 0.41348400712013245
229
+ ],
230
+ [
231
+ "current",
232
+ 0.3183194696903229
233
+ ],
234
+ [
235
+ "db",
236
+ 0.2706228494644165
237
+ ],
238
+ [
239
+ "bell",
240
+ 0.26825445890426636
241
+ ],
242
+ [
243
+ "components",
244
+ 0.21461938321590424
245
+ ],
246
+ [
247
+ "power",
248
+ 0.21316790580749512
249
+ ],
250
+ [
251
+ "an",
252
+ 0.1696605086326599
253
+ ]
254
+ ],
255
+ "5": [
256
+ [
257
+ "scripture",
258
+ 0.49850359559059143
259
+ ],
260
+ [
261
+ "christians",
262
+ 0.3343726396560669
263
+ ],
264
+ [
265
+ "sin",
266
+ 0.3216101825237274
267
+ ],
268
+ [
269
+ "bible",
270
+ 0.3182045817375183
271
+ ],
272
+ [
273
+ "commandment",
274
+ 0.3006872534751892
275
+ ],
276
+ [
277
+ "christian",
278
+ 0.29813724756240845
279
+ ],
280
+ [
281
+ "sabbath",
282
+ 0.2799895107746124
283
+ ],
284
+ [
285
+ "worship",
286
+ 0.25994357466697693
287
+ ],
288
+ [
289
+ "church",
290
+ 0.21210813522338867
291
+ ],
292
+ [
293
+ "jesus",
294
+ 0.19473840296268463
295
+ ]
296
+ ],
297
+ "6": [
298
+ [
299
+ "patients",
300
+ 0.36148548126220703
301
+ ],
302
+ [
303
+ "biological",
304
+ 0.3399290144443512
305
+ ],
306
+ [
307
+ "medicine",
308
+ 0.32046276330947876
309
+ ],
310
+ [
311
+ "studies",
312
+ 0.3164226710796356
313
+ ],
314
+ [
315
+ "doctors",
316
+ 0.311117947101593
317
+ ],
318
+ [
319
+ "scientific",
320
+ 0.30316871404647827
321
+ ],
322
+ [
323
+ "hypothesis",
324
+ 0.2973718047142029
325
+ ],
326
+ [
327
+ "medical",
328
+ 0.2896951138973236
329
+ ],
330
+ [
331
+ "yeast",
332
+ 0.2858676314353943
333
+ ],
334
+ [
335
+ "skepticism",
336
+ 0.25586238503456116
337
+ ]
338
+ ],
339
+ "7": [
340
+ [
341
+ "nasa",
342
+ 0.4904171824455261
343
+ ],
344
+ [
345
+ "solar",
346
+ 0.41525936126708984
347
+ ],
348
+ [
349
+ "space",
350
+ 0.30125892162323
351
+ ],
352
+ [
353
+ "shuttle",
354
+ 0.2783016562461853
355
+ ],
356
+ [
357
+ "orbiting",
358
+ 0.27185139060020447
359
+ ],
360
+ [
361
+ "orbit",
362
+ 0.26335209608078003
363
+ ],
364
+ [
365
+ "energy",
366
+ 0.26114189624786377
367
+ ],
368
+ [
369
+ "research",
370
+ 0.25468331575393677
371
+ ],
372
+ [
373
+ "funds",
374
+ 0.23165209591388702
375
+ ],
376
+ [
377
+ "rocket",
378
+ 0.22964322566986084
379
+ ]
380
+ ],
381
+ "8": [
382
+ [
383
+ "armenians",
384
+ 0.6803417801856995
385
+ ],
386
+ [
387
+ "armenian",
388
+ 0.6451001763343811
389
+ ],
390
+ [
391
+ "armenia",
392
+ 0.5702511668205261
393
+ ],
394
+ [
395
+ "turks",
396
+ 0.5130749344825745
397
+ ],
398
+ [
399
+ "genocide",
400
+ 0.4851542115211487
401
+ ],
402
+ [
403
+ "turkish",
404
+ 0.41546088457107544
405
+ ],
406
+ [
407
+ "istanbul",
408
+ 0.3896584212779999
409
+ ],
410
+ [
411
+ "turkey",
412
+ 0.3862608075141907
413
+ ],
414
+ [
415
+ "ankara",
416
+ 0.37604790925979614
417
+ ],
418
+ [
419
+ "ottoman",
420
+ 0.37248003482818604
421
+ ]
422
+ ],
423
+ "9": [
424
+ [
425
+ "guns",
426
+ 0.38956397771835327
427
+ ],
428
+ [
429
+ "gun",
430
+ 0.3191092908382416
431
+ ],
432
+ [
433
+ "amendment",
434
+ 0.26733607053756714
435
+ ],
436
+ [
437
+ "constitution",
438
+ 0.2175583392381668
439
+ ],
440
+ [
441
+ "laws",
442
+ 0.21046751737594604
443
+ ],
444
+ [
445
+ "fear",
446
+ 0.19570353627204895
447
+ ],
448
+ [
449
+ "arms",
450
+ 0.19506798684597015
451
+ ],
452
+ [
453
+ "government",
454
+ 0.14524857699871063
455
+ ],
456
+ [
457
+ "children",
458
+ 0.1439054310321808
459
+ ],
460
+ [
461
+ "more",
462
+ 0.13918007910251617
463
+ ]
464
+ ],
465
+ "10": [
466
+ [
467
+ "",
468
+ 0.8380727171897888
469
+ ],
470
+ [
471
+ "",
472
+ 0.8380727171897888
473
+ ],
474
+ [
475
+ "",
476
+ 0.8380727171897888
477
+ ],
478
+ [
479
+ "",
480
+ 0.8380727171897888
481
+ ],
482
+ [
483
+ "",
484
+ 0.8380727171897888
485
+ ],
486
+ [
487
+ "",
488
+ 0.8380727171897888
489
+ ],
490
+ [
491
+ "",
492
+ 0.8380727171897888
493
+ ],
494
+ [
495
+ "",
496
+ 0.8380727171897888
497
+ ],
498
+ [
499
+ "",
500
+ 0.8380727171897888
501
+ ],
502
+ [
503
+ "",
504
+ 0.8380727171897888
505
+ ]
506
+ ],
507
+ "11": [
508
+ [
509
+ "motorcycle",
510
+ 0.44981420040130615
511
+ ],
512
+ [
513
+ "bikes",
514
+ 0.42080575227737427
515
+ ],
516
+ [
517
+ "cobralinks",
518
+ 0.403255820274353
519
+ ],
520
+ [
521
+ "bike",
522
+ 0.3877028226852417
523
+ ],
524
+ [
525
+ "riding",
526
+ 0.37913596630096436
527
+ ],
528
+ [
529
+ "steering",
530
+ 0.3160845637321472
531
+ ],
532
+ [
533
+ "gyroscopes",
534
+ 0.3139514923095703
535
+ ],
536
+ [
537
+ "ride",
538
+ 0.2816734313964844
539
+ ],
540
+ [
541
+ "wheels",
542
+ 0.276180237531662
543
+ ],
544
+ [
545
+ "rear",
546
+ 0.2648862898349762
547
+ ]
548
+ ],
549
+ "12": [
550
+ [
551
+ "encryption",
552
+ 0.49398115277290344
553
+ ],
554
+ [
555
+ "security",
556
+ 0.3849998116493225
557
+ ],
558
+ [
559
+ "encrypted",
560
+ 0.3563859760761261
561
+ ],
562
+ [
563
+ "privacy",
564
+ 0.3422272801399231
565
+ ],
566
+ [
567
+ "secure",
568
+ 0.33472347259521484
569
+ ],
570
+ [
571
+ "clipper",
572
+ 0.31066858768463135
573
+ ],
574
+ [
575
+ "enforcement",
576
+ 0.3074526786804199
577
+ ],
578
+ [
579
+ "protocol",
580
+ 0.2988588213920593
581
+ ],
582
+ [
583
+ "chip",
584
+ 0.28715917468070984
585
+ ],
586
+ [
587
+ "protect",
588
+ 0.2654755711555481
589
+ ]
590
+ ],
591
+ "13": [
592
+ [
593
+ "contacted",
594
+ 0.48150402307510376
595
+ ],
596
+ [
597
+ "address",
598
+ 0.47267699241638184
599
+ ],
600
+ [
601
+ "mail",
602
+ 0.4652317762374878
603
+ ],
604
+ [
605
+ "contact",
606
+ 0.4631514549255371
607
+ ],
608
+ [
609
+ "email",
610
+ 0.45610103011131287
611
+ ],
612
+ [
613
+ "emailed",
614
+ 0.42107102274894714
615
+ ],
616
+ [
617
+ "send",
618
+ 0.3703654408454895
619
+ ],
620
+ [
621
+ "message",
622
+ 0.3573004901409149
623
+ ],
624
+ [
625
+ "st",
626
+ 0.32264983654022217
627
+ ],
628
+ [
629
+ "picsdinofiabanetwwellscom",
630
+ 0.29394006729125977
631
+ ]
632
+ ],
633
+ "14": [
634
+ [
635
+ "paganism",
636
+ 0.38175398111343384
637
+ ],
638
+ [
639
+ "faith",
640
+ 0.354227215051651
641
+ ],
642
+ [
643
+ "christianity",
644
+ 0.32510048151016235
645
+ ],
646
+ [
647
+ "christians",
648
+ 0.3178114891052246
649
+ ],
650
+ [
651
+ "atheists",
652
+ 0.3177250623703003
653
+ ],
654
+ [
655
+ "believe",
656
+ 0.27535033226013184
657
+ ],
658
+ [
659
+ "gods",
660
+ 0.2707403600215912
661
+ ],
662
+ [
663
+ "believed",
664
+ 0.26654261350631714
665
+ ],
666
+ [
667
+ "allah",
668
+ 0.2576576769351959
669
+ ],
670
+ [
671
+ "bible",
672
+ 0.2552494406700134
673
+ ]
674
+ ],
675
+ "15": [
676
+ [
677
+ "action",
678
+ 0.27939969301223755
679
+ ],
680
+ [
681
+ "fbi",
682
+ 0.25634491443634033
683
+ ],
684
+ [
685
+ "batf",
686
+ 0.249955415725708
687
+ ],
688
+ [
689
+ "war",
690
+ 0.2343226969242096
691
+ ],
692
+ [
693
+ "president",
694
+ 0.2275950312614441
695
+ ],
696
+ [
697
+ "administration",
698
+ 0.2050614356994629
699
+ ],
700
+ [
701
+ "of",
702
+ 0.19322416186332703
703
+ ],
704
+ [
705
+ "more",
706
+ 0.18295884132385254
707
+ ],
708
+ [
709
+ "was",
710
+ 0.18010863661766052
711
+ ],
712
+ [
713
+ "just",
714
+ 0.17146320641040802
715
+ ]
716
+ ]
717
+ },
718
+ "topics": [
719
+ 0,
720
+ 1,
721
+ 8,
722
+ 3,
723
+ -1,
724
+ -1,
725
+ 13,
726
+ 0,
727
+ 0,
728
+ 5,
729
+ -1,
730
+ -1,
731
+ 5,
732
+ -1,
733
+ 7,
734
+ 8,
735
+ 3,
736
+ -1,
737
+ 9,
738
+ 11,
739
+ 4,
740
+ 3,
741
+ 2,
742
+ 11,
743
+ 0,
744
+ 7,
745
+ 15,
746
+ 3,
747
+ 1,
748
+ 9,
749
+ 4,
750
+ 15,
751
+ 2,
752
+ 0,
753
+ 6,
754
+ 3,
755
+ 1,
756
+ -1,
757
+ -1,
758
+ 11,
759
+ -1,
760
+ 2,
761
+ -1,
762
+ -1,
763
+ 0,
764
+ 1,
765
+ 3,
766
+ 4,
767
+ 12,
768
+ 3,
769
+ 1,
770
+ 4,
771
+ 15,
772
+ 12,
773
+ -1,
774
+ 11,
775
+ 14,
776
+ 1,
777
+ -1,
778
+ -1,
779
+ 0,
780
+ 2,
781
+ 2,
782
+ -1,
783
+ 8,
784
+ -1,
785
+ 0,
786
+ 9,
787
+ -1,
788
+ 1,
789
+ 1,
790
+ -1,
791
+ 4,
792
+ 2,
793
+ -1,
794
+ -1,
795
+ 0,
796
+ 2,
797
+ 13,
798
+ 0,
799
+ -1,
800
+ -1,
801
+ 2,
802
+ 3,
803
+ -1,
804
+ 5,
805
+ -1,
806
+ 8,
807
+ -1,
808
+ -1,
809
+ 0,
810
+ 10,
811
+ 5,
812
+ 1,
813
+ 8,
814
+ 1,
815
+ 3,
816
+ 11,
817
+ 9,
818
+ 13,
819
+ -1,
820
+ 3,
821
+ 2,
822
+ 8,
823
+ 10,
824
+ 0,
825
+ -1,
826
+ 9,
827
+ -1,
828
+ -1,
829
+ 3,
830
+ 4,
831
+ 7,
832
+ 2,
833
+ 8,
834
+ 8,
835
+ 3,
836
+ -1,
837
+ 0,
838
+ 1,
839
+ 1,
840
+ 7,
841
+ 3,
842
+ 4,
843
+ -1,
844
+ -1,
845
+ 2,
846
+ 10,
847
+ 1,
848
+ -1,
849
+ -1,
850
+ 5,
851
+ 9,
852
+ 0,
853
+ 1,
854
+ 10,
855
+ -1,
856
+ 12,
857
+ -1,
858
+ -1,
859
+ 5,
860
+ -1,
861
+ 9,
862
+ 2,
863
+ 6,
864
+ 12,
865
+ -1,
866
+ -1,
867
+ -1,
868
+ -1,
869
+ -1,
870
+ -1,
871
+ 3,
872
+ 1,
873
+ -1,
874
+ 1,
875
+ 6,
876
+ 8,
877
+ 7,
878
+ 1,
879
+ 2,
880
+ 10,
881
+ 13,
882
+ -1,
883
+ -1,
884
+ 1,
885
+ 5,
886
+ 7,
887
+ -1,
888
+ 6,
889
+ 1,
890
+ 14,
891
+ 3,
892
+ 14,
893
+ 13,
894
+ -1,
895
+ 0,
896
+ 5,
897
+ 11,
898
+ 0,
899
+ 4,
900
+ 0,
901
+ -1,
902
+ 1,
903
+ -1,
904
+ 10,
905
+ -1,
906
+ -1,
907
+ 8,
908
+ 14,
909
+ 13,
910
+ 10,
911
+ 10,
912
+ 14,
913
+ -1,
914
+ 5,
915
+ 8,
916
+ 4,
917
+ 6,
918
+ 3,
919
+ 5,
920
+ 1,
921
+ 5,
922
+ 2,
923
+ -1,
924
+ -1,
925
+ 13,
926
+ -1,
927
+ 3,
928
+ 14,
929
+ -1,
930
+ 2,
931
+ 1,
932
+ 1,
933
+ -1,
934
+ -1,
935
+ 3,
936
+ 9,
937
+ -1,
938
+ 10,
939
+ 0,
940
+ 5,
941
+ 3,
942
+ 4,
943
+ 12,
944
+ -1,
945
+ 12,
946
+ 11,
947
+ -1,
948
+ 0,
949
+ -1,
950
+ 1,
951
+ -1,
952
+ 2,
953
+ 0,
954
+ -1,
955
+ 5,
956
+ 0,
957
+ 0,
958
+ 2,
959
+ -1,
960
+ -1,
961
+ 6,
962
+ 7,
963
+ 4,
964
+ 4,
965
+ 10,
966
+ 4,
967
+ 5,
968
+ 9,
969
+ 3,
970
+ 3,
971
+ 2,
972
+ 1,
973
+ -1,
974
+ 2,
975
+ -1,
976
+ -1,
977
+ -1,
978
+ -1,
979
+ -1,
980
+ -1,
981
+ -1,
982
+ 6,
983
+ 3,
984
+ 3,
985
+ 1,
986
+ -1,
987
+ -1,
988
+ 1,
989
+ 12,
990
+ -1,
991
+ 10,
992
+ 3,
993
+ 6,
994
+ -1,
995
+ 8,
996
+ 2,
997
+ 2,
998
+ 5,
999
+ 6,
1000
+ -1,
1001
+ 14,
1002
+ 0,
1003
+ 2,
1004
+ 10,
1005
+ 8,
1006
+ 6,
1007
+ 1,
1008
+ 1,
1009
+ 1,
1010
+ -1,
1011
+ 15,
1012
+ 2,
1013
+ -1,
1014
+ 2,
1015
+ 4,
1016
+ 10,
1017
+ 13,
1018
+ 12,
1019
+ 5,
1020
+ -1,
1021
+ -1,
1022
+ -1,
1023
+ -1,
1024
+ 2,
1025
+ -1,
1026
+ 15,
1027
+ 0,
1028
+ -1,
1029
+ -1,
1030
+ 4,
1031
+ 14,
1032
+ 3,
1033
+ 4,
1034
+ 3,
1035
+ -1,
1036
+ 8,
1037
+ 10,
1038
+ 9,
1039
+ 9,
1040
+ 3,
1041
+ -1,
1042
+ 3,
1043
+ -1,
1044
+ 10,
1045
+ 7,
1046
+ 0,
1047
+ -1,
1048
+ 11,
1049
+ -1,
1050
+ 3,
1051
+ 1,
1052
+ 0,
1053
+ 1,
1054
+ 13,
1055
+ 15,
1056
+ 7,
1057
+ 3,
1058
+ -1,
1059
+ 3,
1060
+ -1,
1061
+ 2,
1062
+ 5,
1063
+ -1,
1064
+ 14,
1065
+ -1,
1066
+ -1,
1067
+ -1,
1068
+ -1,
1069
+ 3,
1070
+ 9,
1071
+ 6,
1072
+ 3,
1073
+ -1,
1074
+ -1,
1075
+ 0,
1076
+ 2,
1077
+ -1,
1078
+ -1,
1079
+ -1,
1080
+ 4,
1081
+ 9,
1082
+ -1,
1083
+ -1,
1084
+ 0,
1085
+ -1,
1086
+ 5,
1087
+ -1,
1088
+ 1,
1089
+ 2,
1090
+ 0,
1091
+ -1,
1092
+ 9,
1093
+ -1,
1094
+ 0,
1095
+ -1,
1096
+ -1,
1097
+ 3,
1098
+ 7,
1099
+ 12,
1100
+ 13,
1101
+ 2,
1102
+ 6,
1103
+ 13,
1104
+ 0,
1105
+ 0,
1106
+ 2,
1107
+ 4,
1108
+ -1,
1109
+ 7,
1110
+ 5,
1111
+ 4,
1112
+ 0,
1113
+ 0,
1114
+ 9,
1115
+ 2,
1116
+ 2,
1117
+ 5,
1118
+ 2,
1119
+ 3,
1120
+ 8,
1121
+ 0,
1122
+ -1,
1123
+ -1,
1124
+ -1,
1125
+ 8,
1126
+ -1,
1127
+ 6,
1128
+ -1,
1129
+ 0,
1130
+ -1,
1131
+ -1,
1132
+ -1,
1133
+ -1,
1134
+ 7,
1135
+ -1,
1136
+ 9,
1137
+ 4,
1138
+ 14,
1139
+ 3,
1140
+ -1,
1141
+ 1,
1142
+ -1,
1143
+ 9,
1144
+ 5,
1145
+ -1,
1146
+ 0,
1147
+ -1,
1148
+ 11,
1149
+ 10,
1150
+ 8,
1151
+ 0,
1152
+ -1,
1153
+ 7,
1154
+ 5,
1155
+ 3,
1156
+ 2,
1157
+ 3,
1158
+ -1,
1159
+ 11,
1160
+ -1,
1161
+ 6,
1162
+ 5,
1163
+ 1,
1164
+ 6,
1165
+ 12,
1166
+ -1,
1167
+ -1,
1168
+ -1,
1169
+ 4,
1170
+ 6,
1171
+ 9,
1172
+ 7,
1173
+ -1,
1174
+ 3,
1175
+ 1,
1176
+ -1,
1177
+ 0,
1178
+ -1,
1179
+ 0,
1180
+ 1,
1181
+ 1,
1182
+ 4,
1183
+ 2,
1184
+ 13,
1185
+ 1,
1186
+ 2,
1187
+ 5,
1188
+ -1,
1189
+ 4,
1190
+ 9,
1191
+ 3,
1192
+ 1,
1193
+ 0,
1194
+ -1,
1195
+ 3,
1196
+ -1,
1197
+ 1,
1198
+ 3,
1199
+ -1,
1200
+ 3,
1201
+ -1,
1202
+ -1,
1203
+ 3,
1204
+ -1,
1205
+ 0,
1206
+ -1,
1207
+ -1,
1208
+ -1,
1209
+ 3,
1210
+ -1,
1211
+ 1,
1212
+ -1,
1213
+ 12,
1214
+ 7,
1215
+ -1,
1216
+ -1,
1217
+ 0,
1218
+ 1,
1219
+ -1,
1220
+ -1,
1221
+ 2,
1222
+ 3,
1223
+ -1,
1224
+ 7,
1225
+ 1,
1226
+ 4,
1227
+ 12,
1228
+ 4,
1229
+ 2,
1230
+ -1,
1231
+ -1,
1232
+ 0,
1233
+ 0,
1234
+ 13,
1235
+ -1,
1236
+ 3,
1237
+ 1,
1238
+ 11,
1239
+ 7,
1240
+ 8,
1241
+ 7,
1242
+ 3,
1243
+ 13,
1244
+ 0,
1245
+ 8,
1246
+ -1,
1247
+ -1,
1248
+ 0,
1249
+ 7,
1250
+ 6,
1251
+ -1,
1252
+ -1,
1253
+ 3,
1254
+ 10,
1255
+ 2,
1256
+ 6,
1257
+ 10,
1258
+ -1,
1259
+ 7,
1260
+ -1,
1261
+ 13,
1262
+ 1,
1263
+ -1,
1264
+ 8,
1265
+ 2,
1266
+ -1,
1267
+ 10,
1268
+ 5,
1269
+ -1,
1270
+ 2,
1271
+ 8,
1272
+ 11,
1273
+ 0,
1274
+ -1,
1275
+ 0,
1276
+ 11,
1277
+ 5,
1278
+ 7,
1279
+ 9,
1280
+ 8,
1281
+ 9,
1282
+ 0,
1283
+ 1,
1284
+ 3,
1285
+ 3,
1286
+ 1,
1287
+ 2,
1288
+ 3,
1289
+ -1,
1290
+ 1,
1291
+ 2,
1292
+ -1,
1293
+ 6,
1294
+ -1,
1295
+ 0,
1296
+ 14,
1297
+ 8,
1298
+ 11,
1299
+ 7,
1300
+ 4,
1301
+ 11,
1302
+ -1,
1303
+ 9,
1304
+ 3,
1305
+ 8,
1306
+ 3,
1307
+ 0,
1308
+ 4,
1309
+ -1,
1310
+ -1,
1311
+ 8,
1312
+ 0,
1313
+ 4,
1314
+ -1,
1315
+ 2,
1316
+ 10,
1317
+ 0,
1318
+ 12,
1319
+ 3,
1320
+ -1,
1321
+ 15,
1322
+ 2,
1323
+ -1,
1324
+ 8,
1325
+ 4,
1326
+ 13,
1327
+ 4,
1328
+ -1,
1329
+ 7,
1330
+ 4,
1331
+ -1,
1332
+ 3,
1333
+ -1,
1334
+ -1,
1335
+ 12,
1336
+ 5,
1337
+ 6,
1338
+ 1,
1339
+ 15,
1340
+ 2,
1341
+ 4,
1342
+ 6,
1343
+ 2,
1344
+ 6,
1345
+ 3,
1346
+ 7,
1347
+ 2,
1348
+ 0,
1349
+ 0,
1350
+ 15,
1351
+ -1,
1352
+ -1,
1353
+ 11,
1354
+ 14,
1355
+ -1,
1356
+ -1,
1357
+ -1,
1358
+ -1,
1359
+ -1,
1360
+ -1,
1361
+ 9,
1362
+ -1,
1363
+ 7,
1364
+ -1,
1365
+ 7,
1366
+ 3,
1367
+ 5,
1368
+ 0,
1369
+ 11,
1370
+ 3,
1371
+ -1,
1372
+ 2,
1373
+ 15,
1374
+ 5,
1375
+ -1,
1376
+ 7,
1377
+ 2,
1378
+ 2,
1379
+ -1,
1380
+ 4,
1381
+ -1,
1382
+ 0,
1383
+ -1,
1384
+ -1,
1385
+ 0,
1386
+ -1,
1387
+ -1,
1388
+ -1,
1389
+ 0,
1390
+ 3,
1391
+ 3,
1392
+ 2,
1393
+ 12,
1394
+ -1,
1395
+ -1,
1396
+ 14,
1397
+ -1,
1398
+ 6,
1399
+ -1,
1400
+ 1,
1401
+ 1,
1402
+ -1,
1403
+ 11,
1404
+ -1,
1405
+ -1,
1406
+ -1,
1407
+ -1,
1408
+ 7,
1409
+ 2,
1410
+ 10,
1411
+ 14,
1412
+ 7,
1413
+ 4,
1414
+ -1,
1415
+ -1,
1416
+ 3,
1417
+ -1,
1418
+ 1,
1419
+ 15,
1420
+ 0,
1421
+ 1,
1422
+ -1,
1423
+ 2,
1424
+ -1,
1425
+ 6,
1426
+ 0,
1427
+ 8,
1428
+ -1,
1429
+ 0,
1430
+ 1,
1431
+ -1,
1432
+ 7,
1433
+ 12,
1434
+ 15,
1435
+ 3,
1436
+ -1,
1437
+ 4,
1438
+ -1,
1439
+ 6,
1440
+ 7,
1441
+ 8,
1442
+ -1,
1443
+ 2,
1444
+ -1,
1445
+ 9,
1446
+ -1,
1447
+ -1,
1448
+ 13,
1449
+ 5,
1450
+ 8,
1451
+ -1,
1452
+ 6,
1453
+ -1,
1454
+ 10,
1455
+ 8,
1456
+ -1,
1457
+ 0,
1458
+ 4,
1459
+ -1,
1460
+ 2,
1461
+ 0,
1462
+ 8,
1463
+ 0,
1464
+ 11,
1465
+ 11,
1466
+ 0,
1467
+ 2,
1468
+ 4,
1469
+ 2,
1470
+ 1,
1471
+ 2,
1472
+ 2,
1473
+ 9,
1474
+ 3,
1475
+ 2,
1476
+ 6,
1477
+ 6,
1478
+ 0,
1479
+ 10,
1480
+ -1,
1481
+ 6,
1482
+ 0,
1483
+ -1,
1484
+ 9,
1485
+ -1,
1486
+ 5,
1487
+ 1,
1488
+ -1,
1489
+ -1,
1490
+ -1,
1491
+ 4,
1492
+ -1,
1493
+ 12,
1494
+ 0,
1495
+ 0,
1496
+ 1,
1497
+ -1,
1498
+ 5,
1499
+ 5,
1500
+ 6,
1501
+ -1,
1502
+ -1,
1503
+ 7,
1504
+ 4,
1505
+ -1,
1506
+ -1,
1507
+ 1,
1508
+ -1,
1509
+ 0,
1510
+ 5,
1511
+ 0,
1512
+ 1,
1513
+ 1,
1514
+ -1,
1515
+ 15,
1516
+ 3,
1517
+ -1,
1518
+ 12,
1519
+ 4,
1520
+ -1,
1521
+ 5,
1522
+ 11,
1523
+ 1,
1524
+ -1,
1525
+ 2,
1526
+ 12,
1527
+ 1,
1528
+ 2,
1529
+ 7,
1530
+ 9,
1531
+ 10,
1532
+ 0,
1533
+ 1,
1534
+ 3,
1535
+ -1,
1536
+ 2,
1537
+ 6,
1538
+ 7,
1539
+ 6,
1540
+ 14,
1541
+ 3,
1542
+ -1,
1543
+ -1,
1544
+ 0,
1545
+ 14,
1546
+ 2,
1547
+ 0,
1548
+ -1,
1549
+ 5,
1550
+ 1,
1551
+ 10,
1552
+ -1,
1553
+ 1,
1554
+ 5,
1555
+ 12,
1556
+ 1,
1557
+ -1,
1558
+ -1,
1559
+ 9,
1560
+ 1,
1561
+ -1,
1562
+ 10,
1563
+ 6,
1564
+ 1,
1565
+ 4,
1566
+ 7,
1567
+ 4,
1568
+ -1,
1569
+ 9,
1570
+ -1,
1571
+ -1,
1572
+ 9,
1573
+ -1,
1574
+ 2,
1575
+ 0,
1576
+ 5,
1577
+ 8,
1578
+ -1,
1579
+ 0,
1580
+ 2,
1581
+ -1,
1582
+ -1,
1583
+ 10,
1584
+ -1,
1585
+ -1,
1586
+ 6,
1587
+ -1,
1588
+ -1,
1589
+ 15,
1590
+ 9,
1591
+ 1,
1592
+ 1,
1593
+ -1,
1594
+ 1,
1595
+ -1,
1596
+ 1,
1597
+ 0,
1598
+ 2,
1599
+ 6,
1600
+ 10,
1601
+ 2,
1602
+ 1,
1603
+ 10,
1604
+ -1,
1605
+ -1,
1606
+ -1,
1607
+ 8,
1608
+ -1,
1609
+ -1,
1610
+ 6,
1611
+ 1,
1612
+ 7,
1613
+ 3,
1614
+ -1,
1615
+ -1,
1616
+ 12,
1617
+ -1,
1618
+ -1,
1619
+ -1,
1620
+ 0,
1621
+ 10,
1622
+ 13,
1623
+ 11,
1624
+ -1,
1625
+ -1,
1626
+ 8,
1627
+ -1,
1628
+ 8,
1629
+ 6,
1630
+ -1,
1631
+ 3,
1632
+ 5,
1633
+ 2,
1634
+ 2,
1635
+ 1,
1636
+ -1,
1637
+ 5,
1638
+ 9,
1639
+ 2,
1640
+ -1,
1641
+ -1,
1642
+ -1,
1643
+ 7,
1644
+ -1,
1645
+ 1,
1646
+ -1,
1647
+ 12,
1648
+ -1,
1649
+ 0,
1650
+ 0,
1651
+ 3,
1652
+ 3,
1653
+ 1,
1654
+ 1,
1655
+ 0,
1656
+ 11,
1657
+ 0,
1658
+ 2,
1659
+ 3,
1660
+ 2,
1661
+ 2,
1662
+ -1,
1663
+ 4,
1664
+ 13,
1665
+ 1,
1666
+ 15,
1667
+ 10,
1668
+ 3,
1669
+ 2,
1670
+ -1,
1671
+ 2,
1672
+ -1,
1673
+ 12,
1674
+ 2,
1675
+ 11,
1676
+ -1,
1677
+ -1,
1678
+ 0,
1679
+ -1,
1680
+ -1,
1681
+ 14,
1682
+ 0,
1683
+ 2,
1684
+ 5,
1685
+ 14,
1686
+ 0,
1687
+ -1,
1688
+ -1,
1689
+ -1,
1690
+ 13,
1691
+ 0,
1692
+ -1,
1693
+ 13,
1694
+ 1,
1695
+ 0,
1696
+ 2,
1697
+ -1,
1698
+ 9,
1699
+ 0,
1700
+ 4,
1701
+ 2,
1702
+ 0,
1703
+ 10,
1704
+ 2,
1705
+ -1,
1706
+ 14,
1707
+ -1,
1708
+ -1,
1709
+ 3,
1710
+ 8,
1711
+ 0,
1712
+ 6,
1713
+ 1,
1714
+ 3,
1715
+ -1,
1716
+ 6,
1717
+ -1,
1718
+ 7
1719
+ ],
1720
+ "topic_sizes": {
1721
+ "0": 92,
1722
+ "1": 82,
1723
+ "8": 36,
1724
+ "3": 75,
1725
+ "-1": 304,
1726
+ "13": 21,
1727
+ "5": 41,
1728
+ "7": 38,
1729
+ "9": 33,
1730
+ "11": 24,
1731
+ "4": 44,
1732
+ "2": 82,
1733
+ "15": 15,
1734
+ "6": 39,
1735
+ "12": 23,
1736
+ "14": 19,
1737
+ "10": 32
1738
+ },
1739
+ "topic_mapper": [
1740
+ [
1741
+ -1,
1742
+ -1,
1743
+ -1
1744
+ ],
1745
+ [
1746
+ 0,
1747
+ 0,
1748
+ 10
1749
+ ],
1750
+ [
1751
+ 1,
1752
+ 1,
1753
+ 0
1754
+ ],
1755
+ [
1756
+ 2,
1757
+ 2,
1758
+ 6
1759
+ ],
1760
+ [
1761
+ 3,
1762
+ 3,
1763
+ 3
1764
+ ],
1765
+ [
1766
+ 4,
1767
+ 4,
1768
+ 13
1769
+ ],
1770
+ [
1771
+ 5,
1772
+ 5,
1773
+ 12
1774
+ ],
1775
+ [
1776
+ 6,
1777
+ 6,
1778
+ 7
1779
+ ],
1780
+ [
1781
+ 7,
1782
+ 7,
1783
+ 2
1784
+ ],
1785
+ [
1786
+ 8,
1787
+ 8,
1788
+ 14
1789
+ ],
1790
+ [
1791
+ 9,
1792
+ 9,
1793
+ 5
1794
+ ],
1795
+ [
1796
+ 10,
1797
+ 10,
1798
+ 8
1799
+ ],
1800
+ [
1801
+ 11,
1802
+ 11,
1803
+ 15
1804
+ ],
1805
+ [
1806
+ 12,
1807
+ 12,
1808
+ 9
1809
+ ],
1810
+ [
1811
+ 13,
1812
+ 13,
1813
+ 11
1814
+ ],
1815
+ [
1816
+ 14,
1817
+ 14,
1818
+ 4
1819
+ ],
1820
+ [
1821
+ 15,
1822
+ 15,
1823
+ 1
1824
+ ]
1825
+ ],
1826
+ "topic_labels": {
1827
+ "-1": "-1_theism_much_way_think",
1828
+ "0": "0_nhl_playoffs_rangers_hockey",
1829
+ "1": "1_performance_ram_drivers_monitor",
1830
+ "2": "2_x11r5_hyperhelp_windows_pc",
1831
+ "3": "3_dos_windows_harddisk_disk",
1832
+ "4": "4_amp_amps_amplifier_ampere",
1833
+ "5": "5_scripture_christians_sin_bible",
1834
+ "6": "6_patients_biological_medicine_studies",
1835
+ "7": "7_nasa_solar_space_shuttle",
1836
+ "8": "8_armenians_armenian_armenia_turks",
1837
+ "9": "9_guns_gun_amendment_constitution",
1838
+ "10": "10____",
1839
+ "11": "11_motorcycle_bikes_cobralinks_bike",
1840
+ "12": "12_encryption_security_encrypted_privacy",
1841
+ "13": "13_contacted_address_mail_contact",
1842
+ "14": "14_paganism_faith_christianity_christians",
1843
+ "15": "15_action_fbi_batf_war"
1844
+ },
1845
+ "custom_labels": null,
1846
+ "_outliers": 1,
1847
+ "topic_aspects": {}
1848
+ }