-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdorpout-0.6.log
2620 lines (2620 loc) · 169 KB
/
dorpout-0.6.log
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==========================================================================
epoch start ====================================================================
cur reconstruct loss: 82711.828125
cur total loss: 82711.828125
==========================================================================
f1 macro: 0.022848038200394886 f1 micro: 0.049571375326127466 precision: 0.049571375326127466 accuracy: 0.049571375326127466 recall 0.049571375326127466
==========================================================================
Average Topic Coherence = 0.098
Average gaton Topic Coherence = -270.301
==========================================================================
-0.060669504798085375
主题先验===================================================================
['atheism', 'atheists', 'religion', 'atheist', 'god']
['winning', 'month', 'student', 'internet', 'compound', 'resource', 'multi', 'page', 'occur', 'scsi']
模型结果====================================================================
==========================================================================
0.010367786395936218
主题先验===================================================================
['graphics', 'image', 'images', 'gif', 'format']
['address', 'knew', 'light', 'hockey', 'records', 'bottom', 'burned', 'freedom', 'rear', 'capability']
模型结果====================================================================
==========================================================================
0.18911838345522455
主题先验===================================================================
['windows', 'dos', 'file', 'ms', 'microsoft']
['brother', 'month', 'student', 'covered', 'analysis', 'internet', 'knew', 'info', 'light', 'related']
模型结果====================================================================
==========================================================================
0.16136018151183468
主题先验===================================================================
['ide', 'controller', 'card', 'bus', 'drive']
['related', 'users', 'eat', 'raise', 'closely', 'thrown', 'algorithm', 'home', 'computer', 'canadian']
模型结果====================================================================
==========================================================================
0.1532631865603967
主题先验===================================================================
['mac', 'apple', 'monitor', 'scsi', 'se']
['extent', 'display', 'supposedly', 'bottom', 'chosen', 'branch', 'thrown', 'differences', 'function', 'home']
模型结果====================================================================
==========================================================================
-0.010138378152124131
主题先验===================================================================
['window', 'motif', 'server', 'widget', 'application']
['analysis', 'page', 'hockey', 'capability', 'biblical', 'credit', 'algorithm', 'subject', 'reference', 'panel']
模型结果====================================================================
==========================================================================
0.02974761781693297
主题先验===================================================================
['sale', 'shipping', 'offer', 'condition', 'sell']
['internet', 'occur', 'burned', 'boston', 'drawing', 'canadian', 'stories', 'raised', 'father', 'management']
模型结果====================================================================
==========================================================================
0.18881665571772513
主题先验===================================================================
['car', 'cars', 'engine', 'ford', 'dealer']
['comments', 'analysis', 'related', 'light', 'display', 'university', 'burned', 'net', 'attack', 'computer']
模型结果====================================================================
==========================================================================
0.12629397104450418
主题先验===================================================================
['bike', 'dod', 'ride', 'riding', 'rear']
['brother', 'winning', 'comments', 'manager', 'extent', 'remains', 'experts', 'industry', 'analysis', 'month']
模型结果====================================================================
==========================================================================
0.07446165615885565
主题先验===================================================================
['baseball', 'game', 'games', 'players', 'league']
['se', 'phrase', 'eat', 'boston', 'theory', 'attack', 'version', 'found', 'judge', 'raised']
模型结果====================================================================
==========================================================================
-0.0014355490899164312
主题先验===================================================================
['hockey', 'game', 'team', 'nhl', 'playoffs']
['experts', 'student', 'se', 'address', 'knew', 'occur', 'supposedly', 'happened', 'phrase', 'rear']
模型结果====================================================================
==========================================================================
0.12776476213913085
主题先验===================================================================
['encryption', 'clipper', 'key', 'nsa', 'keys']
['brother', 'student', 'industry', 'internet', 'info', 'resource', 'page', 'multi', 'light', 'records']
模型结果====================================================================
==========================================================================
0.21532664137567098
主题先验===================================================================
['circuit', 'electronics', 'output', 'radio', 'battery']
['info', 'raise', 'word', 'net', 'office', 'death', 'forward', 'authorities', 'terms', 'author']
模型结果====================================================================
==========================================================================
0.0760734042053299
主题先验===================================================================
['doctor', 'medical', 'disease', 'patients', 'gordon']
['extent', 'comments', 'month', 'industry', 'address', 'compound', 'multi', 'related', 'hockey', 'supposedly']
模型结果====================================================================
==========================================================================
0.15057664706209106
主题先验===================================================================
['space', 'orbit', 'shuttle', 'nasa', 'launch']
['industry', 'university', 'burned', 'los', 'chosen', 'transfer', 'word', 'names', 'rom', 'launch']
模型结果====================================================================
==========================================================================
0.02399808630872958
主题先验===================================================================
['god', 'christ', 'church', 'jesus', 'christian']
['experts', 'compound', 'related', 'display', 'scsi', 'users', 'amazing', 'university', 'los', 'eat']
模型结果====================================================================
==========================================================================
0.10739894197937655
主题先验===================================================================
['gun', 'guns', 'firearms', 'fbi', 'weapons']
['winning', 'comments', 'manager', 'remains', 'covered', 'address', 'compound', 'knew', 'info', 'page']
模型结果====================================================================
==========================================================================
0.12619720881295718
主题先验===================================================================
['israel', 'israeli', 'arab', 'armenian', 'armenians']
['brother', 'winning', 'comments', 'remains', 'experts', 'student', 'covered', 'analysis', 'se', 'address']
模型结果====================================================================
==========================================================================
0.03197857695766479
主题先验===================================================================
['gay', 'people', 'clinton', 'government', 'economic']
['manager', 'remains', 'month', 'covered', 'industry', 'multi', 'hockey', 'records', 'scsi', 'amazing']
模型结果====================================================================
==========================================================================
0.23188702122168434
主题先验===================================================================
['jesus', 'god', 'bible', 'christian', 'kent']
['resource', 'light', 'transfer', 'closely', 'function', 'peter', 'subject', 'readers', 'considered', 'helpful']
模型结果====================================================================
epoch end====================================================================
==========================================================================
==========================================================================
epoch start ====================================================================
cur reconstruct loss: 82706.9921875
cur total loss: 82706.9921875
==========================================================================
f1 macro: 0.004976093500973968 f1 micro: 0.0523667536339918 precision: 0.0523667536339918 accuracy: 0.0523667536339918 recall 0.0523667536339918
==========================================================================
Average Topic Coherence = 0.140
Average gaton Topic Coherence = -238.433
==========================================================================
-0.10257418817584203
主题先验===================================================================
['atheism', 'atheists', 'religion', 'atheist', 'god']
['max', 'encrypted', 'ide', 'scsi', 'chip', 'bios', 'controller', 'encryption', 'connect', 'clipper']
模型结果====================================================================
==========================================================================
0.19015668854814446
主题先验===================================================================
['graphics', 'image', 'images', 'gif', 'format']
['la', 'playoff', 'shots', 'rangers', 'sp', 'detroit', 'pp', 'playoffs', 'ah', 'van']
模型结果====================================================================
==========================================================================
0.3627239407921779
主题先验===================================================================
['windows', 'dos', 'file', 'ms', 'microsoft']
['gods', 'morality', 'belief', 'atheism', 'objective', 'god', 'spirit', 'faith', 'eternal', 'atheists']
模型结果====================================================================
==========================================================================
0.039302275902770106
主题先验===================================================================
['ide', 'controller', 'card', 'bus', 'drive']
['max', 'patients', 'orbit', 'shuttle', 'objective', 'energy', 'patient', 'science', 'fuel', 'absolute']
模型结果====================================================================
==========================================================================
0.21108529397984835
主题先验===================================================================
['mac', 'apple', 'monitor', 'scsi', 'se']
['max', 'pain', 'patients', 'patient', 'disease', 'doctors', 'treatment', 'insurance', 'medical', 'doctor']
模型结果====================================================================
==========================================================================
0.12605628189688683
主题先验===================================================================
['window', 'motif', 'server', 'widget', 'application']
['scsi', 'ide', 'bios', 'drives', 'controller', 'cpu', 'rom', 'floppy', 'insurance', 'backup']
模型结果====================================================================
==========================================================================
0.10157189897793191
主题先验===================================================================
['sale', 'shipping', 'offer', 'condition', 'sell']
['max', 'amendment', 'firearms', 'crimes', 'tm', 'court', 'sex', 'sexual', 'drugs', 'drug']
模型结果====================================================================
==========================================================================
-0.17401808626874513
主题先验===================================================================
['car', 'cars', 'engine', 'ford', 'dealer']
['max', 'scsi', 'dealer', 'sale', 'tax', 'privacy', 'manuals', 'encrypted', 'tm', 'encryption']
模型结果====================================================================
==========================================================================
-0.11977990580305882
主题先验===================================================================
['bike', 'dod', 'ride', 'riding', 'rear']
['van', 'la', 'ah', 'max', 'rear', 'shots', 'boot', 'tm', 'bike', 'stereo']
模型结果====================================================================
==========================================================================
0.2556381845552679
主题先验===================================================================
['baseball', 'game', 'games', 'players', 'league']
['font', 'fonts', 'microsoft', 'development', 'characters', 'music', 'satellite', 'program', 'education', 'libraries']
模型结果====================================================================
==========================================================================
0.22982216301170502
主题先验===================================================================
['hockey', 'game', 'team', 'nhl', 'playoffs']
['pp', 'sp', 'la', 'shots', 'ah', 'van', 'ny', 'rangers', 'period', 'louis']
模型结果====================================================================
==========================================================================
0.42569830568214306
主题先验===================================================================
['encryption', 'clipper', 'key', 'nsa', 'keys']
['gif', 'gov', 'anonymous', 'ftp', 'usenet', 'pub', 'motif', 'internet', 'server', 'libraries']
模型结果====================================================================
==========================================================================
-0.07389405082721998
主题先验===================================================================
['circuit', 'electronics', 'output', 'radio', 'battery']
['scsi', 'controller', 'isa', 'turkish', 'vga', 'print', 'genocide', 'minority', 'turks', 'port']
模型结果====================================================================
==========================================================================
-0.1964382131180124
主题先验===================================================================
['doctor', 'medical', 'disease', 'patients', 'gordon']
['ah', 'arabs', 'arab', 'israeli', 'baseball', 'hockey', 'jews', 'clinton', 'batf', 'max']
模型结果====================================================================
==========================================================================
0.35295155239074033
主题先验===================================================================
['space', 'orbit', 'shuttle', 'nasa', 'launch']
['windows', 'dos', 'font', 'fonts', 'unix', 'microsoft', 'desktop', 'os', 'drivers', 'graphics']
模型结果====================================================================
==========================================================================
0.4510046076273633
主题先验===================================================================
['god', 'christ', 'church', 'jesus', 'christian']
['max', 'turks', 'armenians', 'soldiers', 'armenian', 'serdar', 'argic', 'muslim', 'genocide', 'burned']
模型结果====================================================================
==========================================================================
0.30446046393607457
主题先验===================================================================
['gun', 'guns', 'firearms', 'fbi', 'weapons']
['pp', 'shots', 'detroit', 'buffalo', 'rangers', 'pittsburgh', 'louis', 'sp', 'period', 'playoff']
模型结果====================================================================
==========================================================================
0.19557663496698435
主题先验===================================================================
['israel', 'israeli', 'arab', 'armenian', 'armenians']
['greek', 'turkish', 'arab', 'arabs', 'jewish', 'turkey', 'jews', 'turks', 'spirit', 'taxes']
模型结果====================================================================
==========================================================================
0.35041324032630405
主题先验===================================================================
['gay', 'people', 'clinton', 'government', 'economic']
['max', 'tm', 'la', 'ma', 'st', 'ah', 'au', 'fi', 'van', 'mr']
模型结果====================================================================
==========================================================================
-0.13520658530801255
主题先验===================================================================
['jesus', 'god', 'bible', 'christian', 'kent']
['rear', 'os', 'honda', 'desktop', 'apple', 'scsi', 'mac', 'keyboard', 'chips', 'mouse']
模型结果====================================================================
epoch end====================================================================
==========================================================================
==========================================================================
epoch start ====================================================================
cur reconstruct loss: 82700.4609375
cur total loss: 82700.4609375
==========================================================================
f1 macro: 0.004976093500973968 f1 micro: 0.0523667536339918 precision: 0.0523667536339918 accuracy: 0.0523667536339918 recall 0.0523667536339918
==========================================================================
Average Topic Coherence = 0.126
Average gaton Topic Coherence = -242.030
==========================================================================
-0.013176080618893186
主题先验===================================================================
['atheism', 'atheists', 'religion', 'atheist', 'god']
['max', 'tm', 'ma', 'ide', 'scsi', 'sp', 'encrypted', 'ah', 'controller', 'bios']
模型结果====================================================================
==========================================================================
0.19015668854814444
主题先验===================================================================
['graphics', 'image', 'images', 'gif', 'format']
['la', 'ah', 'sp', 'shots', 'rangers', 'playoff', 'pp', 'van', 'detroit', 'playoffs']
模型结果====================================================================
==========================================================================
0.362723940792178
主题先验===================================================================
['windows', 'dos', 'file', 'ms', 'microsoft']
['morality', 'gods', 'belief', 'objective', 'atheism', 'god', 'spirit', 'faith', 'atheists', 'eternal']
模型结果====================================================================
==========================================================================
0.050246940360395745
主题先验===================================================================
['ide', 'controller', 'card', 'bus', 'drive']
['max', 'patients', 'theory', 'science', 'objective', 'energy', 'fuel', 'absolute', 'rear', 'patient']
模型结果====================================================================
==========================================================================
-0.1264671656444765
主题先验===================================================================
['mac', 'apple', 'monitor', 'scsi', 'se']
['max', 'tm', 'pain', 'patients', 'ah', 'patient', 'disease', 'doug', 'doctors', 'doctor']
模型结果====================================================================
==========================================================================
-0.02266695430476732
主题先验===================================================================
['window', 'motif', 'server', 'widget', 'application']
['scsi', 'ide', 'drives', 'bios', 'drug', 'rom', 'cpu', 'backup', 'insurance', 'devices']
模型结果====================================================================
==========================================================================
0.1429581064488739
主题先验===================================================================
['sale', 'shipping', 'offer', 'condition', 'sell']
['amendment', 'max', 'drugs', 'crimes', 'sex', 'court', 'firearms', 'drug', 'sexual', 'homosexual']
模型结果====================================================================
==========================================================================
-0.173216030056371
主题先验===================================================================
['car', 'cars', 'engine', 'ford', 'dealer']
['max', 'dealer', 'scsi', 'privacy', 'encrypted', 'tax', 'manuals', 'sale', 'company', 'encryption']
模型结果====================================================================
==========================================================================
0.023529793247341828
主题先验===================================================================
['bike', 'dod', 'ride', 'riding', 'rear']
['ah', 'la', 'van', 'max', 'tm', 'shots', 'rear', 'air', 'soldiers', 'boot']
模型结果====================================================================
==========================================================================
0.23897751648651994
主题先验===================================================================
['baseball', 'game', 'games', 'players', 'league']
['font', 'microsoft', 'characters', 'fonts', 'windows', 'education', 'software', 'program', 'music', 'development']
模型结果====================================================================
==========================================================================
0.15764048835463668
主题先验===================================================================
['hockey', 'game', 'team', 'nhl', 'playoffs']
['sp', 'ah', 'pp', 'la', 'shots', 'van', 'ny', 'rangers', 'doug', 'ma']
模型结果====================================================================
==========================================================================
0.42569830568214295
主题先验===================================================================
['encryption', 'clipper', 'key', 'nsa', 'keys']
['gif', 'anonymous', 'gov', 'ftp', 'pub', 'motif', 'usenet', 'internet', 'libraries', 'server']
模型结果====================================================================
==========================================================================
0.23672037617023672
主题先验===================================================================
['circuit', 'electronics', 'output', 'radio', 'battery']
['scsi', 'controller', 'print', 'isa', 'printer', 'port', 'pc', 'vga', 'copies', 'gif']
模型结果====================================================================
==========================================================================
-0.24945368433806941
主题先验===================================================================
['doctor', 'medical', 'disease', 'patients', 'gordon']
['ah', 'max', 'sp', 'tm', 'ma', 'batf', 'air', 'arabs', 'hockey', 'arab']
模型结果====================================================================
==========================================================================
0.34038941637618536
主题先验===================================================================
['space', 'orbit', 'shuttle', 'nasa', 'launch']
['windows', 'dos', 'microsoft', 'font', 'desktop', 'fonts', 'unix', 'graphics', 'shareware', 'drivers']
模型结果====================================================================
==========================================================================
0.17717955364388072
主题先验===================================================================
['god', 'christ', 'church', 'jesus', 'christian']
['max', 'ah', 'tm', 'turks', 'armenians', 'serdar', 'argic', 'armenian', 'soldiers', 'genocide']
模型结果====================================================================
==========================================================================
0.21204018160145918
主题先验===================================================================
['gun', 'guns', 'firearms', 'fbi', 'weapons']
['pp', 'sp', 'shots', 'detroit', 'buffalo', 'rangers', 'louis', 'pittsburgh', 'ah', 'period']
模型结果====================================================================
==========================================================================
0.3332005836330297
主题先验===================================================================
['israel', 'israeli', 'arab', 'armenian', 'armenians']
['greek', 'turkish', 'ah', 'arab', 'arabs', 'turkey', 'turks', 'armenia', 'jews', 'jewish']
模型结果====================================================================
==========================================================================
0.350413240326304
主题先验===================================================================
['gay', 'people', 'clinton', 'government', 'economic']
['max', 'tm', 'la', 'ma', 'ah', 'st', 'au', 'fi', 'van', 'mr']
模型结果====================================================================
==========================================================================
-0.1358828617539933
主题先验===================================================================
['jesus', 'god', 'bible', 'christian', 'kent']
['desktop', 'apple', 'rear', 'os', 'mac', 'keyboard', 'microsoft', 'honda', 'chips', 'scsi']
模型结果====================================================================
epoch end====================================================================
==========================================================================
==========================================================================
epoch start ====================================================================
cur reconstruct loss: 82693.1171875
cur total loss: 82693.1171875
==========================================================================
f1 macro: 0.005599986500602123 f1 micro: 0.04845322400298174 precision: 0.048453224002981736 accuracy: 0.048453224002981736 recall 0.048453224002981736
==========================================================================
Average Topic Coherence = 0.140
Average gaton Topic Coherence = -238.650
==========================================================================
0.04454652482677719
主题先验===================================================================
['atheism', 'atheists', 'religion', 'atheist', 'god']
['max', 'tm', 'ah', 'sp', 'ma', 'ide', 'scsi', 'controller', 'id', 'encrypted']
模型结果====================================================================
==========================================================================
0.1901566885481444
主题先验===================================================================
['graphics', 'image', 'images', 'gif', 'format']
['la', 'ah', 'sp', 'shots', 'rangers', 'pp', 'playoff', 'van', 'detroit', 'playoffs']
模型结果====================================================================
==========================================================================
0.36272394079217785
主题先验===================================================================
['windows', 'dos', 'file', 'ms', 'microsoft']
['morality', 'gods', 'objective', 'belief', 'atheism', 'atheists', 'faith', 'god', 'spirit', 'eternal']
模型结果====================================================================
==========================================================================
-0.10731958485200986
主题先验===================================================================
['ide', 'controller', 'card', 'bus', 'drive']
['theory', 'patients', 'science', 'rear', 'objective', 'max', 'fuel', 'gay', 'energy', 'interpretation']
模型结果====================================================================
==========================================================================
-0.04533233567485742
主题先验===================================================================
['mac', 'apple', 'monitor', 'scsi', 'se']
['max', 'tm', 'ah', 'sp', 'ma', 'pain', 'doug', 'pp', 'patient', 'gordon']
模型结果====================================================================
==========================================================================
0.1500707722455445
主题先验===================================================================
['window', 'motif', 'server', 'widget', 'application']
['scsi', 'rom', 'drives', 'card', 'copies', 'backup', 'disk', 'devices', 'bios', 'drug']
模型结果====================================================================
==========================================================================
0.18707558372987299
主题先验===================================================================
['sale', 'shipping', 'offer', 'condition', 'sell']
['amendment', 'drugs', 'drug', 'sex', 'entry', 'crimes', 'court', 'output', 'sexual', 'rate']
模型结果====================================================================
==========================================================================
-0.10463970951616185
主题先验===================================================================
['car', 'cars', 'engine', 'ford', 'dealer']
['max', 'dealer', 'privacy', 'encrypted', 'manuals', 'tax', 'scsi', 'company', 'packages', 'encryption']
模型结果====================================================================
==========================================================================
0.055194292792401595
主题先验===================================================================
['bike', 'dod', 'ride', 'riding', 'rear']
['max', 'ah', 'la', 'van', 'tm', 'shots', 'air', 'rear', 'ma', 'soldiers']
模型结果====================================================================
==========================================================================
0.35016764053578303
主题先验===================================================================
['baseball', 'game', 'games', 'players', 'league']
['microsoft', 'characters', 'windows', 'font', 'software', 'fonts', 'format', 'formats', 'program', 'image']
模型结果====================================================================
==========================================================================
0.19439422083166802
主题先验===================================================================
['hockey', 'game', 'team', 'nhl', 'playoffs']
['ah', 'sp', 'pp', 'la', 'ma', 'van', 'shots', 'ny', 'rangers', 'buffalo']
模型结果====================================================================
==========================================================================
0.42569830568214295
主题先验===================================================================
['encryption', 'clipper', 'key', 'nsa', 'keys']
['gif', 'anonymous', 'motif', 'ftp', 'pub', 'gov', 'usenet', 'internet', 'libraries', 'server']
模型结果====================================================================
==========================================================================
0.28752327342717265
主题先验===================================================================
['circuit', 'electronics', 'output', 'radio', 'battery']
['scsi', 'print', 'printer', 'pc', 'controller', 'modem', 'card', 'copies', 'port', 'isa']
模型结果====================================================================
==========================================================================
-0.23474072504373764
主题先验===================================================================
['doctor', 'medical', 'disease', 'patients', 'gordon']
['ah', 'max', 'tm', 'sp', 'ma', 'air', 'batf', 'dod', 'hockey', 'arabs']
模型结果====================================================================
==========================================================================
0.36658711624142587
主题先验===================================================================
['space', 'orbit', 'shuttle', 'nasa', 'launch']
['windows', 'microsoft', 'dos', 'desktop', 'font', 'fonts', 'unix', 'characters', 'shareware', 'software']
模型结果====================================================================
==========================================================================
0.008522421151418241
主题先验===================================================================
['god', 'christ', 'church', 'jesus', 'christian']
['max', 'ah', 'tm', 'serdar', 'argic', 'turks', 'armenians', 'armenian', 'sp', 'genocide']
模型结果====================================================================
==========================================================================
0.17930346664204444
主题先验===================================================================
['gun', 'guns', 'firearms', 'fbi', 'weapons']
['sp', 'pp', 'ah', 'shots', 'max', 'buffalo', 'detroit', 'rangers', 'tm', 'louis']
模型结果====================================================================
==========================================================================
0.05671262486232895
主题先验===================================================================
['israel', 'israeli', 'arab', 'armenian', 'armenians']
['ah', 'max', 'turkish', 'greek', 'turkey', 'turks', 'tm', 'arabs', 'arab', 'armenia']
模型结果====================================================================
==========================================================================
0.3527844414579704
主题先验===================================================================
['gay', 'people', 'clinton', 'government', 'economic']
['max', 'tm', 'ah', 'ma', 'la', 'st', 'au', 'fi', 'sp', 'mr']
模型结果====================================================================
==========================================================================
0.08218362052720407
主题先验===================================================================
['jesus', 'god', 'bible', 'christian', 'kent']
['desktop', 'microsoft', 'apple', 'mac', 'windows', 'keyboard', 'rear', 'characters', 'os', 'screen']
模型结果====================================================================
epoch end====================================================================
==========================================================================
==========================================================================
epoch start ====================================================================
cur reconstruct loss: 82684.8125
cur total loss: 82684.8125
==========================================================================
f1 macro: 0.004997457030683372 f1 micro: 0.0506895266492732 precision: 0.0506895266492732 accuracy: 0.0506895266492732 recall 0.0506895266492732
==========================================================================
Average Topic Coherence = 0.165
Average gaton Topic Coherence = -233.525
==========================================================================
0.14527903371748493
主题先验===================================================================
['atheism', 'atheists', 'religion', 'atheist', 'god']
['max', 'ah', 'tm', 'sp', 'ma', 'ide', 'scsi', 'id', 'gov', 'controller']
模型结果====================================================================
==========================================================================
0.1860104707921222
主题先验===================================================================
['graphics', 'image', 'images', 'gif', 'format']
['ah', 'sp', 'la', 'pp', 'shots', 'rangers', 'playoff', 'van', 'detroit', 'wings']
模型结果====================================================================
==========================================================================
0.3762044357557008
主题先验===================================================================
['windows', 'dos', 'file', 'ms', 'microsoft']
['morality', 'gods', 'objective', 'atheism', 'belief', 'atheists', 'faith', 'god', 'spirit', 'atheist']
模型结果====================================================================
==========================================================================
-0.2332491295896792
主题先验===================================================================
['ide', 'controller', 'card', 'bus', 'drive']
['theory', 'science', 'rear', 'patients', 'lights', 'gay', 'interpretation', 'definition', 'cars', 'bible']
模型结果====================================================================
==========================================================================
-0.04757047733521399
主题先验===================================================================
['mac', 'apple', 'monitor', 'scsi', 'se']
['max', 'ah', 'tm', 'sp', 'ma', 'pp', 'pitt', 'doug', 'buffalo', 'gordon']
模型结果====================================================================
==========================================================================
0.23462437119927917
主题先验===================================================================
['window', 'motif', 'server', 'widget', 'application']
['scsi', 'microsoft', 'card', 'rom', 'disk', 'characters', 'copies', 'backup', 'feature', 'compression']
模型结果====================================================================
==========================================================================
0.12422506214202901
主题先验===================================================================
['sale', 'shipping', 'offer', 'condition', 'sell']
['output', 'entry', 'amendment', 'drug', 'theory', 'drugs', 'rate', 'rates', 'sex', 'characters']
模型结果====================================================================
==========================================================================
-0.04773279921741513
主题先验===================================================================
['car', 'cars', 'engine', 'ford', 'dealer']
['dealer', 'privacy', 'encrypted', 'company', 'packages', 'encryption', 'software', 'max', 'manuals', 'microsoft']
模型结果====================================================================
==========================================================================
0.2602905038851009
主题先验===================================================================
['bike', 'dod', 'ride', 'riding', 'rear']
['max', 'ah', 'tm', 'la', 'van', 'air', 'ma', 'shots', 'pp', 'ny']
模型结果====================================================================
==========================================================================
0.3428519810575882
主题先验===================================================================
['baseball', 'game', 'games', 'players', 'league']
['microsoft', 'characters', 'windows', 'software', 'font', 'format', 'formats', 'fonts', 'modem', 'shareware']
模型结果====================================================================
==========================================================================
0.2804084515950712
主题先验===================================================================
['hockey', 'game', 'team', 'nhl', 'playoffs']
['ah', 'sp', 'ma', 'pp', 'la', 'max', 'tm', 'ny', 'van', 'shots']
模型结果====================================================================
==========================================================================
0.4256983056821431
主题先验===================================================================
['encryption', 'clipper', 'key', 'nsa', 'keys']
['gif', 'anonymous', 'motif', 'ftp', 'pub', 'internet', 'libraries', 'usenet', 'server', 'gov']
模型结果====================================================================
==========================================================================
0.25282197829141156
主题先验===================================================================
['circuit', 'electronics', 'output', 'radio', 'battery']
['scsi', 'print', 'printer', 'modem', 'pc', 'card', 'copies', 'port', 'characters', 'video']
模型结果====================================================================
==========================================================================
-0.033246149167299135
主题先验===================================================================
['doctor', 'medical', 'disease', 'patients', 'gordon']
['max', 'ah', 'tm', 'sp', 'ma', 'air', 'batf', 'dod', 'st', 'hockey']
模型结果====================================================================
==========================================================================
0.36658711624142587
主题先验===================================================================
['space', 'orbit', 'shuttle', 'nasa', 'launch']
['windows', 'microsoft', 'desktop', 'dos', 'font', 'fonts', 'characters', 'unix', 'software', 'shareware']
模型结果====================================================================
==========================================================================
-0.08649308336729594
主题先验===================================================================
['god', 'christ', 'church', 'jesus', 'christian']
['max', 'ah', 'tm', 'sp', 'serdar', 'argic', 'ma', 'turks', 'armenians', 'armenian']
模型结果====================================================================
==========================================================================
0.181507967892461
主题先验===================================================================
['gun', 'guns', 'firearms', 'fbi', 'weapons']
['max', 'ah', 'sp', 'pp', 'tm', 'ma', 'shots', 'buffalo', 'detroit', 'la']
模型结果====================================================================
==========================================================================
0.11266340547625886
主题先验===================================================================
['israel', 'israeli', 'arab', 'armenian', 'armenians']
['max', 'ah', 'tm', 'turkish', 'pp', 'ma', 'greek', 'turkey', 'turks', 'armenia']
模型结果====================================================================
==========================================================================
0.37440114677923514
主题先验===================================================================
['gay', 'people', 'clinton', 'government', 'economic']
['max', 'tm', 'ah', 'ma', 'la', 'sp', 'st', 'au', 'fi', 'ny']
模型结果====================================================================
==========================================================================
0.09222467034974892
主题先验===================================================================
['jesus', 'god', 'bible', 'christian', 'kent']
['desktop', 'microsoft', 'windows', 'apple', 'characters', 'mac', 'keyboard', 'screen', 'rear', 'drivers']
模型结果====================================================================
epoch end====================================================================
==========================================================================
==========================================================================
epoch start ====================================================================
cur reconstruct loss: 82675.421875
cur total loss: 82675.421875
==========================================================================
f1 macro: 0.004837134996006035 f1 micro: 0.05078270592620202 precision: 0.050782705926202015 accuracy: 0.050782705926202015 recall 0.050782705926202015
==========================================================================
Average Topic Coherence = 0.184
Average gaton Topic Coherence = -229.597
==========================================================================
0.174416150444226
主题先验===================================================================
['atheism', 'atheists', 'religion', 'atheist', 'god']
['max', 'ah', 'tm', 'sp', 'ma', 'ide', 'id', 'scsi', 'gov', 'hd']
模型结果====================================================================
==========================================================================
0.10313576040261364
主题先验===================================================================
['graphics', 'image', 'images', 'gif', 'format']
['ah', 'sp', 'la', 'pp', 'rangers', 'shots', 'van', 'playoff', 'ma', 'detroit']
模型结果====================================================================
==========================================================================
0.3762044357557008
主题先验===================================================================
['windows', 'dos', 'file', 'ms', 'microsoft']
['morality', 'gods', 'objective', 'atheism', 'belief', 'atheists', 'faith', 'god', 'spirit', 'atheist']
模型结果====================================================================
==========================================================================
0.008634278264159563
主题先验===================================================================
['ide', 'controller', 'card', 'bus', 'drive']
['theory', 'rear', 'science', 'lights', 'bible', 'cars', 'interpretation', 'models', 'definition', 'car']
模型结果====================================================================
==========================================================================
-0.18253018311234892
主题先验===================================================================
['mac', 'apple', 'monitor', 'scsi', 'se']
['max', 'ah', 'tm', 'sp', 'ma', 'pp', 'pitt', 'buffalo', 'surrender', 'serdar']
模型结果====================================================================
==========================================================================
0.24768259541916898
主题先验===================================================================
['window', 'motif', 'server', 'widget', 'application']
['microsoft', 'characters', 'windows', 'card', 'software', 'disk', 'scsi', 'rom', 'compression', 'modem']
模型结果====================================================================
==========================================================================
0.16267935096447336
主题先验===================================================================
['sale', 'shipping', 'offer', 'condition', 'sell']
['output', 'characters', 'entry', 'microsoft', 'windows', 'sound', 'file', 'theory', 'rate', 'compression']
模型结果====================================================================
==========================================================================
0.14416839324688846
主题先验===================================================================
['car', 'cars', 'engine', 'ford', 'dealer']
['privacy', 'dealer', 'encrypted', 'microsoft', 'software', 'packages', 'company', 'encryption', 'companies', 'files']
模型结果====================================================================
==========================================================================
0.24655605363503036
主题先验===================================================================
['bike', 'dod', 'ride', 'riding', 'rear']
['max', 'ah', 'tm', 'la', 'van', 'ma', 'air', 'sp', 'shots', 'pp']
模型结果====================================================================
==========================================================================
0.33559699507834173
主题先验===================================================================
['baseball', 'game', 'games', 'players', 'league']
['microsoft', 'windows', 'characters', 'software', 'modem', 'format', 'formats', 'font', 'fonts', 'compression']
模型结果====================================================================
==========================================================================
0.32931529538049625
主题先验===================================================================
['hockey', 'game', 'team', 'nhl', 'playoffs']
['ah', 'sp', 'max', 'ma', 'tm', 'pp', 'la', 'air', 'ny', 'van']
模型结果====================================================================
==========================================================================
0.43775318018555576
主题先验===================================================================
['encryption', 'clipper', 'key', 'nsa', 'keys']
['gif', 'anonymous', 'motif', 'internet', 'pub', 'ftp', 'libraries', 'server', 'usenet', 'formats']
模型结果====================================================================
==========================================================================
0.2261367313890365
主题先验===================================================================
['circuit', 'electronics', 'output', 'radio', 'battery']
['scsi', 'modem', 'print', 'printer', 'pc', 'microsoft', 'characters', 'card', 'video', 'graphics']
模型结果====================================================================
==========================================================================
-0.11625527896915996
主题先验===================================================================
['doctor', 'medical', 'disease', 'patients', 'gordon']
['max', 'ah', 'tm', 'sp', 'ma', 'air', 'batf', 'pitt', 'st', 'serdar']
模型结果====================================================================
==========================================================================
0.34940906455445997
主题先验===================================================================
['space', 'orbit', 'shuttle', 'nasa', 'launch']
['windows', 'microsoft', 'desktop', 'dos', 'characters', 'font', 'software', 'fonts', 'modem', 'unix']
模型结果====================================================================
==========================================================================
-0.036329945169264674
主题先验===================================================================
['god', 'christ', 'church', 'jesus', 'christian']
['max', 'ah', 'tm', 'sp', 'ma', 'serdar', 'argic', 'air', 'turks', 'armenians']
模型结果====================================================================
==========================================================================
0.08626225212650132
主题先验===================================================================
['gun', 'guns', 'firearms', 'fbi', 'weapons']
['max', 'ah', 'sp', 'tm', 'ma', 'pp', 'shots', 'la', 'buffalo', 'pitt']
模型结果====================================================================
==========================================================================
0.15368714181922863
主题先验===================================================================
['israel', 'israeli', 'arab', 'armenian', 'armenians']
['max', 'ah', 'tm', 'ma', 'sp', 'pp', 'turkish', 'la', 'air', 'serdar']
模型结果====================================================================
==========================================================================
0.37440114677923525
主题先验===================================================================
['gay', 'people', 'clinton', 'government', 'economic']
['max', 'tm', 'ah', 'ma', 'sp', 'la', 'st', 'au', 'ny', 'fi']
模型结果====================================================================
==========================================================================
0.267135042892566
主题先验===================================================================
['jesus', 'god', 'bible', 'christian', 'kent']
['microsoft', 'desktop', 'windows', 'characters', 'apple', 'mac', 'screen', 'keyboard', 'software', 'sound']
模型结果====================================================================
epoch end====================================================================
==========================================================================
==========================================================================
epoch start ====================================================================
cur reconstruct loss: 82664.9609375
cur total loss: 82664.9609375
==========================================================================
f1 macro: 0.004834989354151881 f1 micro: 0.05078270592620202 precision: 0.050782705926202015 accuracy: 0.050782705926202015 recall 0.050782705926202015
==========================================================================
Average Topic Coherence = 0.185
Average gaton Topic Coherence = -231.106
==========================================================================
0.12645186328387584
主题先验===================================================================
['atheism', 'atheists', 'religion', 'atheist', 'god']
['max', 'ah', 'tm', 'sp', 'ma', 'ide', 'id', 'air', 'la', 'gov']
模型结果====================================================================
==========================================================================
0.10518516453982805
主题先验===================================================================
['graphics', 'image', 'images', 'gif', 'format']
['ah', 'sp', 'la', 'pp', 'ma', 'rangers', 'shots', 'van', 'air', 'playoff']
模型结果====================================================================
==========================================================================
0.4012997440846744
主题先验===================================================================
['windows', 'dos', 'file', 'ms', 'microsoft']
['morality', 'objective', 'gods', 'atheism', 'belief', 'atheists', 'faith', 'existence', 'atheist', 'religions']
模型结果====================================================================
==========================================================================
-0.06011259654669036
主题先验===================================================================
['ide', 'controller', 'card', 'bus', 'drive']
['theory', 'bible', 'characters', 'windows', 'rear', 'lights', 'desktop', 'microsoft', 'science', 'models']
模型结果====================================================================
==========================================================================
0.03827081838617535
主题先验===================================================================
['mac', 'apple', 'monitor', 'scsi', 'se']
['max', 'ah', 'tm', 'sp', 'ma', 'pp', 'pitt', 'air', 'surrender', 'st']
模型结果====================================================================
==========================================================================
0.27940513098826686
主题先验===================================================================
['window', 'motif', 'server', 'widget', 'application']
['microsoft', 'windows', 'characters', 'software', 'modem', 'card', 'disk', 'compression', 'rom', 'feature']
模型结果====================================================================
==========================================================================
0.2719725488483503
主题先验===================================================================
['sale', 'shipping', 'offer', 'condition', 'sell']
['characters', 'microsoft', 'windows', 'output', 'entry', 'sound', 'file', 'compression', 'disk', 'software']
模型结果====================================================================
==========================================================================
0.1441683932468885
主题先验===================================================================
['car', 'cars', 'engine', 'ford', 'dealer']
['microsoft', 'software', 'privacy', 'encrypted', 'packages', 'company', 'dealer', 'files', 'encryption', 'companies']
模型结果====================================================================
==========================================================================
0.24655605363503044
主题先验===================================================================
['bike', 'dod', 'ride', 'riding', 'rear']
['max', 'ah', 'tm', 'la', 'ma', 'van', 'sp', 'air', 'pp', 'shots']
模型结果====================================================================
==========================================================================
0.31524340835178083
主题先验===================================================================
['baseball', 'game', 'games', 'players', 'league']
['microsoft', 'windows', 'characters', 'software', 'modem', 'formats', 'format', 'compression', 'desktop', 'font']
模型结果====================================================================
==========================================================================
0.1889491022388083
主题先验===================================================================
['hockey', 'game', 'team', 'nhl', 'playoffs']
['ah', 'max', 'sp', 'tm', 'ma', 'la', 'pp', 'air', 'pitt', 'ny']
模型结果====================================================================
==========================================================================
0.4022227529503358
主题先验===================================================================
['encryption', 'clipper', 'key', 'nsa', 'keys']
['gif', 'internet', 'anonymous', 'motif', 'libraries', 'pub', 'ftp', 'server', 'files', 'desktop']
模型结果====================================================================
==========================================================================
0.24013403670444192
主题先验===================================================================
['circuit', 'electronics', 'output', 'radio', 'battery']
['microsoft', 'modem', 'characters', 'pc', 'printer', 'print', 'card', 'scsi', 'graphics', 'software']
模型结果====================================================================
==========================================================================
-0.11625527896915996
主题先验===================================================================
['doctor', 'medical', 'disease', 'patients', 'gordon']
['max', 'ah', 'tm', 'sp', 'ma', 'air', 'batf', 'pitt', 'st', 'serdar']
模型结果====================================================================
==========================================================================
0.3333158912209298
主题先验===================================================================
['space', 'orbit', 'shuttle', 'nasa', 'launch']
['windows', 'microsoft', 'desktop', 'characters', 'dos', 'modem', 'software', 'font', 'shareware', 'fonts']
模型结果====================================================================
==========================================================================
-0.050264876328940084
主题先验===================================================================
['god', 'christ', 'church', 'jesus', 'christian']
['max', 'ah', 'tm', 'sp', 'ma', 'serdar', 'air', 'argic', 'pitt', 'la']
模型结果====================================================================
==========================================================================
0.08626225212650139
主题先验===================================================================
['gun', 'guns', 'firearms', 'fbi', 'weapons']
['max', 'ah', 'sp', 'tm', 'ma', 'pp', 'pitt', 'la', 'buffalo', 'shots']
模型结果====================================================================
==========================================================================
0.15368714181922863
主题先验===================================================================
['israel', 'israeli', 'arab', 'armenian', 'armenians']
['max', 'ah', 'tm', 'ma', 'sp', 'pp', 'air', 'la', 'serdar', 'turkish']
模型结果====================================================================
==========================================================================
0.330915108448071
主题先验===================================================================
['gay', 'people', 'clinton', 'government', 'economic']
['max', 'tm', 'ah', 'ma', 'sp', 'la', 'st', 'au', 'air', 'ny']
模型结果====================================================================
==========================================================================
0.2664779288208226
主题先验===================================================================
['jesus', 'god', 'bible', 'christian', 'kent']
['microsoft', 'windows', 'desktop', 'characters', 'software', 'apple', 'screen', 'sound', 'mac', 'pc']
模型结果====================================================================
epoch end====================================================================
==========================================================================
==========================================================================
epoch start ====================================================================
cur reconstruct loss: 82653.609375
cur total loss: 82653.609375
==========================================================================
f1 macro: 0.00483284561496852 f1 micro: 0.05078270592620202 precision: 0.050782705926202015 accuracy: 0.050782705926202015 recall 0.050782705926202015
==========================================================================
Average Topic Coherence = 0.196
Average gaton Topic Coherence = -228.252
==========================================================================
0.1264518632838758
主题先验===================================================================
['atheism', 'atheists', 'religion', 'atheist', 'god']
['max', 'ah', 'tm', 'sp', 'ma', 'air', 'ide', 'id', 'la', 'gov']
模型结果====================================================================
==========================================================================
0.10518516453982801
主题先验===================================================================
['graphics', 'image', 'images', 'gif', 'format']
['ah', 'sp', 'la', 'ma', 'pp', 'air', 'rangers', 'shots', 'van', 'playoff']
模型结果====================================================================
==========================================================================
0.40129974408467445
主题先验===================================================================
['windows', 'dos', 'file', 'ms', 'microsoft']
['morality', 'objective', 'gods', 'atheism', 'belief', 'atheists', 'faith', 'atheist', 'existence', 'religions']
模型结果====================================================================
==========================================================================
0.1986627908929951
主题先验===================================================================
['ide', 'controller', 'card', 'bus', 'drive']
['windows', 'microsoft', 'characters', 'desktop', 'theory', 'screen', 'applications', 'bible', 'text', 'color']
模型结果====================================================================
==========================================================================
0.03827081838617534
主题先验===================================================================
['mac', 'apple', 'monitor', 'scsi', 'se']
['max', 'ah', 'tm', 'sp', 'ma', 'pitt', 'pp', 'air', 'st', 'surrender']
模型结果====================================================================
==========================================================================
0.2794051309882669
主题先验===================================================================
['window', 'motif', 'server', 'widget', 'application']
['microsoft', 'windows', 'characters', 'software', 'modem', 'disk', 'compression', 'card', 'rom', 'feature']
模型结果====================================================================
==========================================================================
0.26021161286462485
主题先验===================================================================
['sale', 'shipping', 'offer', 'condition', 'sell']
['microsoft', 'windows', 'characters', 'output', 'sound', 'file', 'software', 'compression', 'modem', 'entry']
模型结果====================================================================
==========================================================================
0.20518890290951286
主题先验===================================================================
['car', 'cars', 'engine', 'ford', 'dealer']
['microsoft', 'software', 'encrypted', 'privacy', 'packages', 'company', 'files', 'encryption', 'file', 'characters']
模型结果====================================================================
==========================================================================
0.176586327372181
主题先验===================================================================
['bike', 'dod', 'ride', 'riding', 'rear']
['max', 'ah', 'tm', 'la', 'ma', 'sp', 'van', 'air', 'pp', 'pitt']
模型结果====================================================================
==========================================================================
0.31260682274542356
主题先验===================================================================
['baseball', 'game', 'games', 'players', 'league']
['microsoft', 'windows', 'characters', 'software', 'modem', 'formats', 'format', 'desktop', 'compression', 'shareware']
模型结果====================================================================
==========================================================================
0.1889491022388083
主题先验===================================================================
['hockey', 'game', 'team', 'nhl', 'playoffs']
['max', 'ah', 'sp', 'tm', 'ma', 'la', 'pp', 'air', 'pitt', 'ny']
模型结果====================================================================
==========================================================================
0.4022227529503359
主题先验===================================================================
['encryption', 'clipper', 'key', 'nsa', 'keys']
['gif', 'internet', 'motif', 'libraries', 'anonymous', 'server', 'desktop', 'pub', 'ftp', 'files']
模型结果====================================================================
==========================================================================
0.301760100900959