-
Notifications
You must be signed in to change notification settings - Fork 0
/
selection_data.csv
We can't make this file beautiful and searchable because it's too large.
1921 lines (1921 loc) · 611 KB
/
selection_data.csv
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
,lsi_dimensions,outpath,silhouette_score,name,n_clusters,n_isolates,silhouette_samples,min_cluster_size,min_samples,cluster_selection_epsilon,cluster_selection_method
0,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4821872115135193,mcs-2_ms-2_cse-0.0_csm-eom_lsi-850,844,[4556],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-eom_lsi-850.feather,2,2,0.0,eom
1,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4855594038963318,mcs-2_ms-2_cse-0.0_csm-leaf_lsi-850,927,[4937],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-leaf_lsi-850.feather,2,2,0.0,leaf
2,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48440080881118774,mcs-2_ms-2_cse-0.01_csm-eom_lsi-850,842,[4531],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-eom_lsi-850.feather,2,2,0.01,eom
3,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4915006756782532,mcs-2_ms-2_cse-0.01_csm-leaf_lsi-850,920,[4890],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-leaf_lsi-850.feather,2,2,0.01,leaf
4,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4845002591609955,mcs-2_ms-2_cse-0.05_csm-eom_lsi-850,839,[4512],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-eom_lsi-850.feather,2,2,0.05,eom
5,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4932495057582855,mcs-2_ms-2_cse-0.05_csm-leaf_lsi-850,905,[4752],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-leaf_lsi-850.feather,2,2,0.05,leaf
6,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48257577419281006,mcs-2_ms-2_cse-0.1_csm-eom_lsi-850,821,[4386],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-eom_lsi-850.feather,2,2,0.1,eom
7,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49308785796165466,mcs-2_ms-2_cse-0.1_csm-leaf_lsi-850,871,[4535],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-leaf_lsi-850.feather,2,2,0.1,leaf
8,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.43994903564453125,mcs-2_ms-2_cse-0.15_csm-eom_lsi-850,777,[4168],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-eom_lsi-850.feather,2,2,0.15,eom
9,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4438864588737488,mcs-2_ms-2_cse-0.15_csm-leaf_lsi-850,816,[4262],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-leaf_lsi-850.feather,2,2,0.15,leaf
10,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3602481782436371,mcs-2_ms-2_cse-0.2_csm-eom_lsi-850,710,[3913],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-eom_lsi-850.feather,2,2,0.2,eom
11,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.36022093892097473,mcs-2_ms-2_cse-0.2_csm-leaf_lsi-850,726,[3934],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-leaf_lsi-850.feather,2,2,0.2,leaf
12,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5088751316070557,mcs-2_ms-3_cse-0.0_csm-eom_lsi-850,645,[5142],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-eom_lsi-850.feather,2,3,0.0,eom
13,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4797244369983673,mcs-2_ms-3_cse-0.0_csm-leaf_lsi-850,773,[5989],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-leaf_lsi-850.feather,2,3,0.0,leaf
14,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5088751316070557,mcs-2_ms-3_cse-0.01_csm-eom_lsi-850,645,[5142],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-eom_lsi-850.feather,2,3,0.01,eom
15,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4963982403278351,mcs-2_ms-3_cse-0.01_csm-leaf_lsi-850,762,[5826],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-leaf_lsi-850.feather,2,3,0.01,leaf
16,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5088751316070557,mcs-2_ms-3_cse-0.05_csm-eom_lsi-850,645,[5142],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-eom_lsi-850.feather,2,3,0.05,eom
17,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5035827159881592,mcs-2_ms-3_cse-0.05_csm-leaf_lsi-850,747,[5710],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-leaf_lsi-850.feather,2,3,0.05,leaf
18,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5083240270614624,mcs-2_ms-3_cse-0.1_csm-eom_lsi-850,635,[5054],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-eom_lsi-850.feather,2,3,0.1,eom
19,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5135353207588196,mcs-2_ms-3_cse-0.1_csm-leaf_lsi-850,712,[5414],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-leaf_lsi-850.feather,2,3,0.1,leaf
20,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4704832434654236,mcs-2_ms-3_cse-0.15_csm-eom_lsi-850,613,[4886],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-eom_lsi-850.feather,2,3,0.15,eom
21,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4683871567249298,mcs-2_ms-3_cse-0.15_csm-leaf_lsi-850,668,[5096],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-leaf_lsi-850.feather,2,3,0.15,leaf
22,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.40809378027915955,mcs-2_ms-3_cse-0.2_csm-eom_lsi-850,584,[4687],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-eom_lsi-850.feather,2,3,0.2,eom
23,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.40434491634368896,mcs-2_ms-3_cse-0.2_csm-leaf_lsi-850,610,[4763],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-leaf_lsi-850.feather,2,3,0.2,leaf
24,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5127866864204407,mcs-2_ms-4_cse-0.0_csm-eom_lsi-850,536,[5539],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-eom_lsi-850.feather,2,4,0.0,eom
25,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49610263109207153,mcs-2_ms-4_cse-0.0_csm-leaf_lsi-850,634,[6279],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-leaf_lsi-850.feather,2,4,0.0,leaf
26,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5153728127479553,mcs-2_ms-4_cse-0.01_csm-eom_lsi-850,535,[5512],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-eom_lsi-850.feather,2,4,0.01,eom
27,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5087257623672485,mcs-2_ms-4_cse-0.01_csm-leaf_lsi-850,625,[6174],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-leaf_lsi-850.feather,2,4,0.01,leaf
28,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.519867479801178,mcs-2_ms-4_cse-0.05_csm-eom_lsi-850,534,[5481],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-eom_lsi-850.feather,2,4,0.05,eom
29,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5219941735267639,mcs-2_ms-4_cse-0.05_csm-leaf_lsi-850,621,[6061],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-leaf_lsi-850.feather,2,4,0.05,leaf
30,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5202228426933289,mcs-2_ms-4_cse-0.1_csm-eom_lsi-850,528,[5425],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-eom_lsi-850.feather,2,4,0.1,eom
31,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5275790691375732,mcs-2_ms-4_cse-0.1_csm-leaf_lsi-850,606,[5938],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-leaf_lsi-850.feather,2,4,0.1,leaf
32,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4995555579662323,mcs-2_ms-4_cse-0.15_csm-eom_lsi-850,517,[5368],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-eom_lsi-850.feather,2,4,0.15,eom
33,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5004174113273621,mcs-2_ms-4_cse-0.15_csm-leaf_lsi-850,564,[5641],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-leaf_lsi-850.feather,2,4,0.15,leaf
34,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.44132423400878906,mcs-2_ms-4_cse-0.2_csm-eom_lsi-850,498,[5255],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-eom_lsi-850.feather,2,4,0.2,eom
35,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4383736848831177,mcs-2_ms-4_cse-0.2_csm-leaf_lsi-850,528,[5405],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-leaf_lsi-850.feather,2,4,0.2,leaf
36,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5449709892272949,mcs-2_ms-5_cse-0.0_csm-eom_lsi-850,439,[5833],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-eom_lsi-850.feather,2,5,0.0,eom
37,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.517737627029419,mcs-2_ms-5_cse-0.0_csm-leaf_lsi-850,509,[6415],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-leaf_lsi-850.feather,2,5,0.0,leaf
38,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5449709892272949,mcs-2_ms-5_cse-0.01_csm-eom_lsi-850,439,[5833],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-eom_lsi-850.feather,2,5,0.01,eom
39,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5337987542152405,mcs-2_ms-5_cse-0.01_csm-leaf_lsi-850,502,[6307],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-leaf_lsi-850.feather,2,5,0.01,leaf
40,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5449709892272949,mcs-2_ms-5_cse-0.05_csm-eom_lsi-850,439,[5833],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-eom_lsi-850.feather,2,5,0.05,eom
41,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5362493991851807,mcs-2_ms-5_cse-0.05_csm-leaf_lsi-850,500,[6303],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-leaf_lsi-850.feather,2,5,0.05,leaf
42,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5434351563453674,mcs-2_ms-5_cse-0.1_csm-eom_lsi-850,436,[5780],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-eom_lsi-850.feather,2,5,0.1,eom
43,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5408768057823181,mcs-2_ms-5_cse-0.1_csm-leaf_lsi-850,489,[6162],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-leaf_lsi-850.feather,2,5,0.1,leaf
44,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5263242721557617,mcs-2_ms-5_cse-0.15_csm-eom_lsi-850,431,[5744],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-eom_lsi-850.feather,2,5,0.15,eom
45,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5201299786567688,mcs-2_ms-5_cse-0.15_csm-leaf_lsi-850,470,[6001],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-leaf_lsi-850.feather,2,5,0.15,leaf
46,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4800180494785309,mcs-2_ms-5_cse-0.2_csm-eom_lsi-850,419,[5660],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-eom_lsi-850.feather,2,5,0.2,eom
47,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47133389115333557,mcs-2_ms-5_cse-0.2_csm-leaf_lsi-850,447,[5802],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-leaf_lsi-850.feather,2,5,0.2,leaf
48,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49851951003074646,mcs-3_ms-2_cse-0.0_csm-eom_lsi-850,663,[4618],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-eom_lsi-850.feather,3,2,0.0,eom
49,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5061836838722229,mcs-3_ms-2_cse-0.0_csm-leaf_lsi-850,701,[4855],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-leaf_lsi-850.feather,3,2,0.0,leaf
50,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5005699396133423,mcs-3_ms-2_cse-0.01_csm-eom_lsi-850,662,[4599],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-eom_lsi-850.feather,3,2,0.01,eom
51,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.511012852191925,mcs-3_ms-2_cse-0.01_csm-leaf_lsi-850,699,[4836],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-leaf_lsi-850.feather,3,2,0.01,leaf
52,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5008360147476196,mcs-3_ms-2_cse-0.05_csm-eom_lsi-850,661,[4586],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-eom_lsi-850.feather,3,2,0.05,eom
53,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5121985077857971,mcs-3_ms-2_cse-0.05_csm-leaf_lsi-850,695,[4793],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-leaf_lsi-850.feather,3,2,0.05,leaf
54,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4980636537075043,mcs-3_ms-2_cse-0.1_csm-eom_lsi-850,651,[4498],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-eom_lsi-850.feather,3,2,0.1,eom
55,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5096639394760132,mcs-3_ms-2_cse-0.1_csm-leaf_lsi-850,678,[4654],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-leaf_lsi-850.feather,3,2,0.1,leaf
56,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.45959562063217163,mcs-3_ms-2_cse-0.15_csm-eom_lsi-850,615,[4304],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-eom_lsi-850.feather,3,2,0.15,eom
57,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.46560510993003845,mcs-3_ms-2_cse-0.15_csm-leaf_lsi-850,634,[4391],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-leaf_lsi-850.feather,3,2,0.15,leaf
58,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.38352516293525696,mcs-3_ms-2_cse-0.2_csm-eom_lsi-850,568,[4087],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-eom_lsi-850.feather,3,2,0.2,eom
59,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.38582760095596313,mcs-3_ms-2_cse-0.2_csm-leaf_lsi-850,572,[4110],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-leaf_lsi-850.feather,3,2,0.2,leaf
60,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5407621264457703,mcs-3_ms-3_cse-0.0_csm-eom_lsi-850,462,[5193],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-eom_lsi-850.feather,3,3,0.0,eom
61,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5531097054481506,mcs-3_ms-3_cse-0.0_csm-leaf_lsi-850,489,[5478],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-leaf_lsi-850.feather,3,3,0.0,leaf
62,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5407621264457703,mcs-3_ms-3_cse-0.01_csm-eom_lsi-850,462,[5193],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-eom_lsi-850.feather,3,3,0.01,eom
63,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5556789040565491,mcs-3_ms-3_cse-0.01_csm-leaf_lsi-850,487,[5449],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-leaf_lsi-850.feather,3,3,0.01,leaf
64,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5407621264457703,mcs-3_ms-3_cse-0.05_csm-eom_lsi-850,462,[5193],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-eom_lsi-850.feather,3,3,0.05,eom
65,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5563472509384155,mcs-3_ms-3_cse-0.05_csm-leaf_lsi-850,486,[5427],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-leaf_lsi-850.feather,3,3,0.05,leaf
66,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5404893755912781,mcs-3_ms-3_cse-0.1_csm-eom_lsi-850,458,[5139],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-eom_lsi-850.feather,3,3,0.1,eom
67,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.557350218296051,mcs-3_ms-3_cse-0.1_csm-leaf_lsi-850,478,[5340],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-leaf_lsi-850.feather,3,3,0.1,leaf
68,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.512193500995636,mcs-3_ms-3_cse-0.15_csm-eom_lsi-850,444,[4998],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-eom_lsi-850.feather,3,3,0.15,eom
69,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5184884667396545,mcs-3_ms-3_cse-0.15_csm-leaf_lsi-850,456,[5100],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-leaf_lsi-850.feather,3,3,0.15,leaf
70,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4549088776111603,mcs-3_ms-3_cse-0.2_csm-eom_lsi-850,423,[4837],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-eom_lsi-850.feather,3,3,0.2,eom
71,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4574764668941498,mcs-3_ms-3_cse-0.2_csm-leaf_lsi-850,428,[4883],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-leaf_lsi-850.feather,3,3,0.2,leaf
72,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5635006427764893,mcs-3_ms-4_cse-0.0_csm-eom_lsi-850,388,[5590],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-eom_lsi-850.feather,3,4,0.0,eom
73,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5831910967826843,mcs-3_ms-4_cse-0.0_csm-leaf_lsi-850,408,[5892],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-leaf_lsi-850.feather,3,4,0.0,leaf
74,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5635006427764893,mcs-3_ms-4_cse-0.01_csm-eom_lsi-850,388,[5590],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-eom_lsi-850.feather,3,4,0.01,eom
75,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.586148202419281,mcs-3_ms-4_cse-0.01_csm-leaf_lsi-850,405,[5837],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-leaf_lsi-850.feather,3,4,0.01,leaf
76,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5635006427764893,mcs-3_ms-4_cse-0.05_csm-eom_lsi-850,388,[5590],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-eom_lsi-850.feather,3,4,0.05,eom
77,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.586148202419281,mcs-3_ms-4_cse-0.05_csm-leaf_lsi-850,405,[5837],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-leaf_lsi-850.feather,3,4,0.05,leaf
78,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.562315821647644,mcs-3_ms-4_cse-0.1_csm-eom_lsi-850,385,[5541],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-eom_lsi-850.feather,3,4,0.1,eom
79,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5837709903717041,mcs-3_ms-4_cse-0.1_csm-leaf_lsi-850,400,[5756],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-leaf_lsi-850.feather,3,4,0.1,leaf
80,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5417810082435608,mcs-3_ms-4_cse-0.15_csm-eom_lsi-850,379,[5501],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-eom_lsi-850.feather,3,4,0.15,eom
81,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.548477053642273,mcs-3_ms-4_cse-0.15_csm-leaf_lsi-850,387,[5600],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-leaf_lsi-850.feather,3,4,0.15,leaf
82,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4863726794719696,mcs-3_ms-4_cse-0.2_csm-eom_lsi-850,365,[5402],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-eom_lsi-850.feather,3,4,0.2,eom
83,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4898527264595032,mcs-3_ms-4_cse-0.2_csm-leaf_lsi-850,368,[5443],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-leaf_lsi-850.feather,3,4,0.2,leaf
84,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5774481296539307,mcs-3_ms-5_cse-0.0_csm-eom_lsi-850,336,[5941],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-eom_lsi-850.feather,3,5,0.0,eom
85,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5982211828231812,mcs-3_ms-5_cse-0.0_csm-leaf_lsi-850,355,[6226],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-leaf_lsi-850.feather,3,5,0.0,leaf
86,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5774481296539307,mcs-3_ms-5_cse-0.01_csm-eom_lsi-850,336,[5941],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-eom_lsi-850.feather,3,5,0.01,eom
87,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6036385297775269,mcs-3_ms-5_cse-0.01_csm-leaf_lsi-850,353,[6200],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-leaf_lsi-850.feather,3,5,0.01,leaf
88,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5774481296539307,mcs-3_ms-5_cse-0.05_csm-eom_lsi-850,336,[5941],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-eom_lsi-850.feather,3,5,0.05,eom
89,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6036385297775269,mcs-3_ms-5_cse-0.05_csm-leaf_lsi-850,353,[6200],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-leaf_lsi-850.feather,3,5,0.05,leaf
90,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5760252475738525,mcs-3_ms-5_cse-0.1_csm-eom_lsi-850,333,[5888],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-eom_lsi-850.feather,3,5,0.1,eom
91,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6014017462730408,mcs-3_ms-5_cse-0.1_csm-leaf_lsi-850,350,[6147],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-leaf_lsi-850.feather,3,5,0.1,leaf
92,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5578933954238892,mcs-3_ms-5_cse-0.15_csm-eom_lsi-850,329,[5857],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-eom_lsi-850.feather,3,5,0.15,eom
93,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5735589861869812,mcs-3_ms-5_cse-0.15_csm-leaf_lsi-850,341,[6026],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-leaf_lsi-850.feather,3,5,0.15,leaf
94,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5146148800849915,mcs-3_ms-5_cse-0.2_csm-eom_lsi-850,320,[5773],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-eom_lsi-850.feather,3,5,0.2,eom
95,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5219809412956238,mcs-3_ms-5_cse-0.2_csm-leaf_lsi-850,328,[5867],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-leaf_lsi-850.feather,3,5,0.2,leaf
96,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5003497004508972,mcs-4_ms-2_cse-0.0_csm-eom_lsi-850,516,[4752],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-eom_lsi-850.feather,4,2,0.0,eom
97,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5088352560997009,mcs-4_ms-2_cse-0.0_csm-leaf_lsi-850,544,[4977],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-leaf_lsi-850.feather,4,2,0.0,leaf
98,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5024315714836121,mcs-4_ms-2_cse-0.01_csm-eom_lsi-850,515,[4733],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-eom_lsi-850.feather,4,2,0.01,eom
99,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5138618350028992,mcs-4_ms-2_cse-0.01_csm-leaf_lsi-850,542,[4958],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-leaf_lsi-850.feather,4,2,0.01,leaf
100,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5024315714836121,mcs-4_ms-2_cse-0.05_csm-eom_lsi-850,515,[4733],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-eom_lsi-850.feather,4,2,0.05,eom
101,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.514641284942627,mcs-4_ms-2_cse-0.05_csm-leaf_lsi-850,541,[4940],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-leaf_lsi-850.feather,4,2,0.05,leaf
102,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5008335709571838,mcs-4_ms-2_cse-0.1_csm-eom_lsi-850,510,[4665],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-eom_lsi-850.feather,4,2,0.1,eom
103,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5126008987426758,mcs-4_ms-2_cse-0.1_csm-leaf_lsi-850,531,[4822],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-leaf_lsi-850.feather,4,2,0.1,leaf
104,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.46771761775016785,mcs-4_ms-2_cse-0.15_csm-eom_lsi-850,490,[4485],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-eom_lsi-850.feather,4,2,0.15,eom
105,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47191840410232544,mcs-4_ms-2_cse-0.15_csm-leaf_lsi-850,503,[4548],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-leaf_lsi-850.feather,4,2,0.15,leaf
106,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3940616846084595,mcs-4_ms-2_cse-0.2_csm-eom_lsi-850,463,[4313],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-eom_lsi-850.feather,4,2,0.2,eom
107,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3938525319099426,mcs-4_ms-2_cse-0.2_csm-leaf_lsi-850,466,[4320],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-leaf_lsi-850.feather,4,2,0.2,leaf
108,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5353349447250366,mcs-4_ms-3_cse-0.0_csm-eom_lsi-850,416,[5192],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-eom_lsi-850.feather,4,3,0.0,eom
109,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5477588176727295,mcs-4_ms-3_cse-0.0_csm-leaf_lsi-850,436,[5446],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-leaf_lsi-850.feather,4,3,0.0,leaf
110,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5353349447250366,mcs-4_ms-3_cse-0.01_csm-eom_lsi-850,416,[5192],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-eom_lsi-850.feather,4,3,0.01,eom
111,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5496852397918701,mcs-4_ms-3_cse-0.01_csm-leaf_lsi-850,435,[5415],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-leaf_lsi-850.feather,4,3,0.01,leaf
112,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5353349447250366,mcs-4_ms-3_cse-0.05_csm-eom_lsi-850,416,[5192],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-eom_lsi-850.feather,4,3,0.05,eom
113,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5503804683685303,mcs-4_ms-3_cse-0.05_csm-leaf_lsi-850,434,[5393],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-leaf_lsi-850.feather,4,3,0.05,leaf
114,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5352631211280823,mcs-4_ms-3_cse-0.1_csm-eom_lsi-850,413,[5145],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-eom_lsi-850.feather,4,3,0.1,eom
115,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5511265993118286,mcs-4_ms-3_cse-0.1_csm-leaf_lsi-850,428,[5323],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-leaf_lsi-850.feather,4,3,0.1,leaf
116,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5091636180877686,mcs-4_ms-3_cse-0.15_csm-eom_lsi-850,403,[5018],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-eom_lsi-850.feather,4,3,0.15,eom
117,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5134605765342712,mcs-4_ms-3_cse-0.15_csm-leaf_lsi-850,408,[5071],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-leaf_lsi-850.feather,4,3,0.15,leaf
118,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.45336875319480896,mcs-4_ms-3_cse-0.2_csm-eom_lsi-850,385,[4879],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-eom_lsi-850.feather,4,3,0.2,eom
119,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.455586314201355,mcs-4_ms-3_cse-0.2_csm-leaf_lsi-850,388,[4903],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-leaf_lsi-850.feather,4,3,0.2,leaf
120,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5605541467666626,mcs-4_ms-4_cse-0.0_csm-eom_lsi-850,345,[5615],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-eom_lsi-850.feather,4,4,0.0,eom
121,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5812711119651794,mcs-4_ms-4_cse-0.0_csm-leaf_lsi-850,362,[5844],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-leaf_lsi-850.feather,4,4,0.0,leaf
122,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5605541467666626,mcs-4_ms-4_cse-0.01_csm-eom_lsi-850,345,[5615],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-eom_lsi-850.feather,4,4,0.01,eom
123,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5812711119651794,mcs-4_ms-4_cse-0.01_csm-leaf_lsi-850,362,[5844],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-leaf_lsi-850.feather,4,4,0.01,leaf
124,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5605541467666626,mcs-4_ms-4_cse-0.05_csm-eom_lsi-850,345,[5615],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-eom_lsi-850.feather,4,4,0.05,eom
125,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5812711119651794,mcs-4_ms-4_cse-0.05_csm-leaf_lsi-850,362,[5844],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-leaf_lsi-850.feather,4,4,0.05,leaf
126,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5585456490516663,mcs-4_ms-4_cse-0.1_csm-eom_lsi-850,342,[5562],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-eom_lsi-850.feather,4,4,0.1,eom
127,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5791123509407043,mcs-4_ms-4_cse-0.1_csm-leaf_lsi-850,358,[5782],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-leaf_lsi-850.feather,4,4,0.1,leaf
128,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5411982536315918,mcs-4_ms-4_cse-0.15_csm-eom_lsi-850,339,[5531],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-eom_lsi-850.feather,4,4,0.15,eom
129,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5471205711364746,mcs-4_ms-4_cse-0.15_csm-leaf_lsi-850,347,[5627],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-leaf_lsi-850.feather,4,4,0.15,leaf
130,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48390769958496094,mcs-4_ms-4_cse-0.2_csm-eom_lsi-850,328,[5439],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-eom_lsi-850.feather,4,4,0.2,eom
131,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4870961606502533,mcs-4_ms-4_cse-0.2_csm-leaf_lsi-850,332,[5486],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-leaf_lsi-850.feather,4,4,0.2,leaf
132,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5819935202598572,mcs-4_ms-5_cse-0.0_csm-eom_lsi-850,295,[5962],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-eom_lsi-850.feather,4,5,0.0,eom
133,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6064271926879883,mcs-4_ms-5_cse-0.0_csm-leaf_lsi-850,308,[6193],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-leaf_lsi-850.feather,4,5,0.0,leaf
134,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5819935202598572,mcs-4_ms-5_cse-0.01_csm-eom_lsi-850,295,[5962],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-eom_lsi-850.feather,4,5,0.01,eom
135,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6064271926879883,mcs-4_ms-5_cse-0.01_csm-leaf_lsi-850,308,[6193],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-leaf_lsi-850.feather,4,5,0.01,leaf
136,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5819935202598572,mcs-4_ms-5_cse-0.05_csm-eom_lsi-850,295,[5962],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-eom_lsi-850.feather,4,5,0.05,eom
137,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6064271926879883,mcs-4_ms-5_cse-0.05_csm-leaf_lsi-850,308,[6193],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-leaf_lsi-850.feather,4,5,0.05,leaf
138,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.579255998134613,mcs-4_ms-5_cse-0.1_csm-eom_lsi-850,293,[5928],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-eom_lsi-850.feather,4,5,0.1,eom
139,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6031608581542969,mcs-4_ms-5_cse-0.1_csm-leaf_lsi-850,306,[6159],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-leaf_lsi-850.feather,4,5,0.1,leaf
140,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.562434732913971,mcs-4_ms-5_cse-0.15_csm-eom_lsi-850,291,[5890],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-eom_lsi-850.feather,4,5,0.15,eom
141,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.577106773853302,mcs-4_ms-5_cse-0.15_csm-leaf_lsi-850,300,[6038],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-leaf_lsi-850.feather,4,5,0.15,leaf
142,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5203399658203125,mcs-4_ms-5_cse-0.2_csm-eom_lsi-850,285,[5826],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-eom_lsi-850.feather,4,5,0.2,eom
143,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5246111750602722,mcs-4_ms-5_cse-0.2_csm-leaf_lsi-850,289,[5883],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-leaf_lsi-850.feather,4,5,0.2,leaf
144,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49286988377571106,mcs-5_ms-2_cse-0.0_csm-eom_lsi-850,437,[4798],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-eom_lsi-850.feather,5,2,0.0,eom
145,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5014349818229675,mcs-5_ms-2_cse-0.0_csm-leaf_lsi-850,455,[4997],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-leaf_lsi-850.feather,5,2,0.0,leaf
146,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49556440114974976,mcs-5_ms-2_cse-0.01_csm-eom_lsi-850,436,[4770],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-eom_lsi-850.feather,5,2,0.01,eom
147,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5041895508766174,mcs-5_ms-2_cse-0.01_csm-leaf_lsi-850,454,[4969],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-leaf_lsi-850.feather,5,2,0.01,leaf
148,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49556440114974976,mcs-5_ms-2_cse-0.05_csm-eom_lsi-850,436,[4770],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-eom_lsi-850.feather,5,2,0.05,eom
149,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5050088167190552,mcs-5_ms-2_cse-0.05_csm-leaf_lsi-850,453,[4951],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-leaf_lsi-850.feather,5,2,0.05,leaf
150,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4962444305419922,mcs-5_ms-2_cse-0.1_csm-eom_lsi-850,433,[4722],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-eom_lsi-850.feather,5,2,0.1,eom
151,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5060080289840698,mcs-5_ms-2_cse-0.1_csm-leaf_lsi-850,446,[4859],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-leaf_lsi-850.feather,5,2,0.1,leaf
152,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4676351249217987,mcs-5_ms-2_cse-0.15_csm-eom_lsi-850,420,[4580],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-eom_lsi-850.feather,5,2,0.15,eom
153,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47206464409828186,mcs-5_ms-2_cse-0.15_csm-leaf_lsi-850,427,[4631],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-leaf_lsi-850.feather,5,2,0.15,leaf
154,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3961213529109955,mcs-5_ms-2_cse-0.2_csm-eom_lsi-850,396,[4411],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-eom_lsi-850.feather,5,2,0.2,eom
155,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3970440626144409,mcs-5_ms-2_cse-0.2_csm-leaf_lsi-850,398,[4430],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-leaf_lsi-850.feather,5,2,0.2,leaf
156,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5257889032363892,mcs-5_ms-3_cse-0.0_csm-eom_lsi-850,374,[5176],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-eom_lsi-850.feather,5,3,0.0,eom
157,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5453382730484009,mcs-5_ms-3_cse-0.0_csm-leaf_lsi-850,391,[5439],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-leaf_lsi-850.feather,5,3,0.0,leaf
158,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5257889032363892,mcs-5_ms-3_cse-0.01_csm-eom_lsi-850,374,[5176],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-eom_lsi-850.feather,5,3,0.01,eom
159,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.547403872013092,mcs-5_ms-3_cse-0.01_csm-leaf_lsi-850,390,[5408],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-leaf_lsi-850.feather,5,3,0.01,leaf
160,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5257889032363892,mcs-5_ms-3_cse-0.05_csm-eom_lsi-850,374,[5176],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-eom_lsi-850.feather,5,3,0.05,eom
161,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.547403872013092,mcs-5_ms-3_cse-0.05_csm-leaf_lsi-850,390,[5408],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-leaf_lsi-850.feather,5,3,0.05,leaf
162,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5258014798164368,mcs-5_ms-3_cse-0.1_csm-eom_lsi-850,371,[5117],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-eom_lsi-850.feather,5,3,0.1,eom
163,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5477451682090759,mcs-5_ms-3_cse-0.1_csm-leaf_lsi-850,385,[5328],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-leaf_lsi-850.feather,5,3,0.1,leaf
164,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5056889653205872,mcs-5_ms-3_cse-0.15_csm-eom_lsi-850,365,[5048],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-eom_lsi-850.feather,5,3,0.15,eom
165,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5131706595420837,mcs-5_ms-3_cse-0.15_csm-leaf_lsi-850,371,[5117],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-leaf_lsi-850.feather,5,3,0.15,leaf
166,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.44998231530189514,mcs-5_ms-3_cse-0.2_csm-eom_lsi-850,351,[4921],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-eom_lsi-850.feather,5,3,0.2,eom
167,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.45520350337028503,mcs-5_ms-3_cse-0.2_csm-leaf_lsi-850,355,[4961],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-leaf_lsi-850.feather,5,3,0.2,leaf
168,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5535798072814941,mcs-5_ms-4_cse-0.0_csm-eom_lsi-850,314,[5658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-eom_lsi-850.feather,5,4,0.0,eom
169,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5735301971435547,mcs-5_ms-4_cse-0.0_csm-leaf_lsi-850,328,[5854],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-leaf_lsi-850.feather,5,4,0.0,leaf
170,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5535798072814941,mcs-5_ms-4_cse-0.01_csm-eom_lsi-850,314,[5658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-eom_lsi-850.feather,5,4,0.01,eom
171,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5735301971435547,mcs-5_ms-4_cse-0.01_csm-leaf_lsi-850,328,[5854],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-leaf_lsi-850.feather,5,4,0.01,leaf
172,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5535798072814941,mcs-5_ms-4_cse-0.05_csm-eom_lsi-850,314,[5658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-eom_lsi-850.feather,5,4,0.05,eom
173,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5735301971435547,mcs-5_ms-4_cse-0.05_csm-leaf_lsi-850,328,[5854],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-leaf_lsi-850.feather,5,4,0.05,leaf
174,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5521388649940491,mcs-5_ms-4_cse-0.1_csm-eom_lsi-850,311,[5599],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-eom_lsi-850.feather,5,4,0.1,eom
175,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5712885856628418,mcs-5_ms-4_cse-0.1_csm-leaf_lsi-850,325,[5795],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-leaf_lsi-850.feather,5,4,0.1,leaf
176,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5353838205337524,mcs-5_ms-4_cse-0.15_csm-eom_lsi-850,309,[5577],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-eom_lsi-850.feather,5,4,0.15,eom
177,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5407460331916809,mcs-5_ms-4_cse-0.15_csm-leaf_lsi-850,316,[5650],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-leaf_lsi-850.feather,5,4,0.15,leaf
178,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48112598061561584,mcs-5_ms-4_cse-0.2_csm-eom_lsi-850,299,[5494],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-eom_lsi-850.feather,5,4,0.2,eom
179,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48451128602027893,mcs-5_ms-4_cse-0.2_csm-leaf_lsi-850,303,[5529],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-leaf_lsi-850.feather,5,4,0.2,leaf
180,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5721457004547119,mcs-5_ms-5_cse-0.0_csm-eom_lsi-850,271,[6009],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-eom_lsi-850.feather,5,5,0.0,eom
181,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5967391729354858,mcs-5_ms-5_cse-0.0_csm-leaf_lsi-850,282,[6200],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-leaf_lsi-850.feather,5,5,0.0,leaf
182,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5721457004547119,mcs-5_ms-5_cse-0.01_csm-eom_lsi-850,271,[6009],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-eom_lsi-850.feather,5,5,0.01,eom
183,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5967391729354858,mcs-5_ms-5_cse-0.01_csm-leaf_lsi-850,282,[6200],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-leaf_lsi-850.feather,5,5,0.01,leaf
184,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5721457004547119,mcs-5_ms-5_cse-0.05_csm-eom_lsi-850,271,[6009],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-eom_lsi-850.feather,5,5,0.05,eom
185,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5967391729354858,mcs-5_ms-5_cse-0.05_csm-leaf_lsi-850,282,[6200],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-leaf_lsi-850.feather,5,5,0.05,leaf
186,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5694740414619446,mcs-5_ms-5_cse-0.1_csm-eom_lsi-850,269,[5975],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-eom_lsi-850.feather,5,5,0.1,eom
187,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5935789942741394,mcs-5_ms-5_cse-0.1_csm-leaf_lsi-850,280,[6166],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-leaf_lsi-850.feather,5,5,0.1,leaf
188,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5525698065757751,mcs-5_ms-5_cse-0.15_csm-eom_lsi-850,267,[5937],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-eom_lsi-850.feather,5,5,0.15,eom
189,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.569833517074585,mcs-5_ms-5_cse-0.15_csm-leaf_lsi-850,275,[6065],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-leaf_lsi-850.feather,5,5,0.15,leaf
190,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5102634429931641,mcs-5_ms-5_cse-0.2_csm-eom_lsi-850,261,[5873],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-eom_lsi-850.feather,5,5,0.2,eom
191,850,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5179299116134644,mcs-5_ms-5_cse-0.2_csm-leaf_lsi-850,265,[5925],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-leaf_lsi-850.feather,5,5,0.2,leaf
192,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.25798267126083374,mcs-2_ms-2_cse-0.0_csm-eom_lsi-10,902,[6905],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-eom_lsi-10.feather,2,2,0.0,eom
193,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2983497679233551,mcs-2_ms-2_cse-0.0_csm-leaf_lsi-10,951,[7053],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-leaf_lsi-10.feather,2,2,0.0,leaf
194,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.45370152592658997,mcs-2_ms-2_cse-0.01_csm-eom_lsi-10,479,[5220],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-eom_lsi-10.feather,2,2,0.01,eom
195,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.45179733633995056,mcs-2_ms-2_cse-0.01_csm-leaf_lsi-10,490,[5255],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-leaf_lsi-10.feather,2,2,0.01,leaf
196,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.11798334866762161,mcs-2_ms-2_cse-0.05_csm-eom_lsi-10,10,[276],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-eom_lsi-10.feather,2,2,0.05,eom
197,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.11798334866762161,mcs-2_ms-2_cse-0.05_csm-leaf_lsi-10,10,[276],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-leaf_lsi-10.feather,2,2,0.05,leaf
198,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-2_ms-2_cse-0.1_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-eom_lsi-10.feather,2,2,0.1,eom
199,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-2_ms-2_cse-0.1_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-leaf_lsi-10.feather,2,2,0.1,leaf
200,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-2_ms-2_cse-0.15_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-eom_lsi-10.feather,2,2,0.15,eom
201,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-2_ms-2_cse-0.15_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-leaf_lsi-10.feather,2,2,0.15,leaf
202,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-2_ms-2_cse-0.2_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-eom_lsi-10.feather,2,2,0.2,eom
203,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-2_ms-2_cse-0.2_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-leaf_lsi-10.feather,2,2,0.2,leaf
204,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.27760252356529236,mcs-2_ms-3_cse-0.0_csm-eom_lsi-10,521,[8154],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-eom_lsi-10.feather,2,3,0.0,eom
205,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3155881464481354,mcs-2_ms-3_cse-0.0_csm-leaf_lsi-10,558,[8293],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-leaf_lsi-10.feather,2,3,0.0,leaf
206,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5003347396850586,mcs-2_ms-3_cse-0.01_csm-eom_lsi-10,300,[6454],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-eom_lsi-10.feather,2,3,0.01,eom
207,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5071268677711487,mcs-2_ms-3_cse-0.01_csm-leaf_lsi-10,305,[6478],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-leaf_lsi-10.feather,2,3,0.01,leaf
208,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.1473219245672226,mcs-2_ms-3_cse-0.05_csm-eom_lsi-10,6,[386],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-eom_lsi-10.feather,2,3,0.05,eom
209,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.1473219245672226,mcs-2_ms-3_cse-0.05_csm-leaf_lsi-10,6,[386],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-leaf_lsi-10.feather,2,3,0.05,leaf
210,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-3_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-eom_lsi-10.feather,2,3,0.1,eom
211,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-3_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-leaf_lsi-10.feather,2,3,0.1,leaf
212,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-3_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-eom_lsi-10.feather,2,3,0.15,eom
213,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-3_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-leaf_lsi-10.feather,2,3,0.15,leaf
214,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-3_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-eom_lsi-10.feather,2,3,0.2,eom
215,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-3_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-leaf_lsi-10.feather,2,3,0.2,leaf
216,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3106832504272461,mcs-2_ms-4_cse-0.0_csm-eom_lsi-10,367,[8545],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-eom_lsi-10.feather,2,4,0.0,eom
217,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.325817734003067,mcs-2_ms-4_cse-0.0_csm-leaf_lsi-10,392,[8674],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-leaf_lsi-10.feather,2,4,0.0,leaf
218,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5299013257026672,mcs-2_ms-4_cse-0.01_csm-eom_lsi-10,218,[7105],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-eom_lsi-10.feather,2,4,0.01,eom
219,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.529521644115448,mcs-2_ms-4_cse-0.01_csm-leaf_lsi-10,224,[7118],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-leaf_lsi-10.feather,2,4,0.01,leaf
220,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.09232818335294724,mcs-2_ms-4_cse-0.05_csm-eom_lsi-10,5,[405],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-eom_lsi-10.feather,2,4,0.05,eom
221,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.09232818335294724,mcs-2_ms-4_cse-0.05_csm-leaf_lsi-10,5,[405],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-leaf_lsi-10.feather,2,4,0.05,leaf
222,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-4_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-eom_lsi-10.feather,2,4,0.1,eom
223,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-4_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-leaf_lsi-10.feather,2,4,0.1,leaf
224,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-4_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-eom_lsi-10.feather,2,4,0.15,eom
225,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-4_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-leaf_lsi-10.feather,2,4,0.15,leaf
226,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-4_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-eom_lsi-10.feather,2,4,0.2,eom
227,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-4_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-leaf_lsi-10.feather,2,4,0.2,leaf
228,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.29067176580429077,mcs-2_ms-5_cse-0.0_csm-eom_lsi-10,268,[8805],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-eom_lsi-10.feather,2,5,0.0,eom
229,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2985973656177521,mcs-2_ms-5_cse-0.0_csm-leaf_lsi-10,286,[9012],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-leaf_lsi-10.feather,2,5,0.0,leaf
230,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.4933893382549286,mcs-2_ms-5_cse-0.01_csm-eom_lsi-10,182,[7441],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-eom_lsi-10.feather,2,5,0.01,eom
231,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.4960617125034332,mcs-2_ms-5_cse-0.01_csm-leaf_lsi-10,186,[7469],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-leaf_lsi-10.feather,2,5,0.01,leaf
232,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2766146659851074,mcs-2_ms-5_cse-0.05_csm-eom_lsi-10,5,[658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-eom_lsi-10.feather,2,5,0.05,eom
233,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2766146659851074,mcs-2_ms-5_cse-0.05_csm-leaf_lsi-10,5,[658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-leaf_lsi-10.feather,2,5,0.05,leaf
234,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-5_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-eom_lsi-10.feather,2,5,0.1,eom
235,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-5_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-leaf_lsi-10.feather,2,5,0.1,leaf
236,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-5_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-eom_lsi-10.feather,2,5,0.15,eom
237,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-5_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-leaf_lsi-10.feather,2,5,0.15,leaf
238,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-5_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-eom_lsi-10.feather,2,5,0.2,eom
239,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-2_ms-5_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-leaf_lsi-10.feather,2,5,0.2,leaf
240,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12216891348361969,mcs-3_ms-2_cse-0.0_csm-eom_lsi-10,446,[7582],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-eom_lsi-10.feather,3,2,0.0,eom
241,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.17119696736335754,mcs-3_ms-2_cse-0.0_csm-leaf_lsi-10,473,[7702],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-leaf_lsi-10.feather,3,2,0.0,leaf
242,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5079542398452759,mcs-3_ms-2_cse-0.01_csm-eom_lsi-10,229,[5649],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-eom_lsi-10.feather,3,2,0.01,eom
243,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5075367093086243,mcs-3_ms-2_cse-0.01_csm-leaf_lsi-10,231,[5654],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-leaf_lsi-10.feather,3,2,0.01,leaf
244,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.23506583273410797,mcs-3_ms-2_cse-0.05_csm-eom_lsi-10,5,[199],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-eom_lsi-10.feather,3,2,0.05,eom
245,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.23506583273410797,mcs-3_ms-2_cse-0.05_csm-leaf_lsi-10,5,[199],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-leaf_lsi-10.feather,3,2,0.05,leaf
246,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-3_ms-2_cse-0.1_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-eom_lsi-10.feather,3,2,0.1,eom
247,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-3_ms-2_cse-0.1_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-leaf_lsi-10.feather,3,2,0.1,leaf
248,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-3_ms-2_cse-0.15_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-eom_lsi-10.feather,3,2,0.15,eom
249,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-3_ms-2_cse-0.15_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-leaf_lsi-10.feather,3,2,0.15,leaf
250,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-3_ms-2_cse-0.2_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-eom_lsi-10.feather,3,2,0.2,eom
251,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-3_ms-2_cse-0.2_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-leaf_lsi-10.feather,3,2,0.2,leaf
252,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.29507192969322205,mcs-3_ms-3_cse-0.0_csm-eom_lsi-10,230,[8575],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-eom_lsi-10.feather,3,3,0.0,eom
253,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2908675968647003,mcs-3_ms-3_cse-0.0_csm-leaf_lsi-10,246,[8692],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-leaf_lsi-10.feather,3,3,0.0,leaf
254,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5301806330680847,mcs-3_ms-3_cse-0.01_csm-eom_lsi-10,125,[6793],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-eom_lsi-10.feather,3,3,0.01,eom
255,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5312453508377075,mcs-3_ms-3_cse-0.01_csm-leaf_lsi-10,126,[6797],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-leaf_lsi-10.feather,3,3,0.01,leaf
256,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4892595410346985,mcs-3_ms-3_cse-0.05_csm-eom_lsi-10,4,[318],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-eom_lsi-10.feather,3,3,0.05,eom
257,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4892595410346985,mcs-3_ms-3_cse-0.05_csm-leaf_lsi-10,4,[318],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-leaf_lsi-10.feather,3,3,0.05,leaf
258,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-3_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-eom_lsi-10.feather,3,3,0.1,eom
259,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-3_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-leaf_lsi-10.feather,3,3,0.1,leaf
260,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-3_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-eom_lsi-10.feather,3,3,0.15,eom
261,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-3_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-leaf_lsi-10.feather,3,3,0.15,leaf
262,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-3_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-eom_lsi-10.feather,3,3,0.2,eom
263,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-3_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-leaf_lsi-10.feather,3,3,0.2,leaf
264,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3762291669845581,mcs-3_ms-4_cse-0.0_csm-eom_lsi-10,141,[8955],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-eom_lsi-10.feather,3,4,0.0,eom
265,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.40445855259895325,mcs-3_ms-4_cse-0.0_csm-leaf_lsi-10,150,[8996],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-leaf_lsi-10.feather,3,4,0.0,leaf
266,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5327485203742981,mcs-3_ms-4_cse-0.01_csm-eom_lsi-10,73,[7378],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-eom_lsi-10.feather,3,4,0.01,eom
267,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5350967049598694,mcs-3_ms-4_cse-0.01_csm-leaf_lsi-10,75,[7379],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-leaf_lsi-10.feather,3,4,0.01,leaf
268,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.492127925157547,mcs-3_ms-4_cse-0.05_csm-eom_lsi-10,4,[384],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-eom_lsi-10.feather,3,4,0.05,eom
269,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.492127925157547,mcs-3_ms-4_cse-0.05_csm-leaf_lsi-10,4,[384],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-leaf_lsi-10.feather,3,4,0.05,leaf
270,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-4_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-eom_lsi-10.feather,3,4,0.1,eom
271,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-4_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-leaf_lsi-10.feather,3,4,0.1,leaf
272,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-4_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-eom_lsi-10.feather,3,4,0.15,eom
273,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-4_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-leaf_lsi-10.feather,3,4,0.15,leaf
274,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-4_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-eom_lsi-10.feather,3,4,0.2,eom
275,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-4_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-leaf_lsi-10.feather,3,4,0.2,leaf
276,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.43517717719078064,mcs-3_ms-5_cse-0.0_csm-eom_lsi-10,91,[9026],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-eom_lsi-10.feather,3,5,0.0,eom
277,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.45555463433265686,mcs-3_ms-5_cse-0.0_csm-leaf_lsi-10,96,[9173],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-leaf_lsi-10.feather,3,5,0.0,leaf
278,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.40028467774391174,mcs-3_ms-5_cse-0.01_csm-eom_lsi-10,60,[7403],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-eom_lsi-10.feather,3,5,0.01,eom
279,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.40407347679138184,mcs-3_ms-5_cse-0.01_csm-leaf_lsi-10,61,[7420],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-leaf_lsi-10.feather,3,5,0.01,leaf
280,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2766146659851074,mcs-3_ms-5_cse-0.05_csm-eom_lsi-10,5,[658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-eom_lsi-10.feather,3,5,0.05,eom
281,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2766146659851074,mcs-3_ms-5_cse-0.05_csm-leaf_lsi-10,5,[658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-leaf_lsi-10.feather,3,5,0.05,leaf
282,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-5_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-eom_lsi-10.feather,3,5,0.1,eom
283,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-5_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-leaf_lsi-10.feather,3,5,0.1,leaf
284,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-5_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-eom_lsi-10.feather,3,5,0.15,eom
285,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-5_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-leaf_lsi-10.feather,3,5,0.15,leaf
286,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-5_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-eom_lsi-10.feather,3,5,0.2,eom
287,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-3_ms-5_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-leaf_lsi-10.feather,3,5,0.2,leaf
288,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0676763504743576,mcs-4_ms-2_cse-0.0_csm-eom_lsi-10,271,[7995],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-eom_lsi-10.feather,4,2,0.0,eom
289,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.09015050530433655,mcs-4_ms-2_cse-0.0_csm-leaf_lsi-10,289,[8143],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-leaf_lsi-10.feather,4,2,0.0,leaf
290,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5063167810440063,mcs-4_ms-2_cse-0.01_csm-eom_lsi-10,124,[5922],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-eom_lsi-10.feather,4,2,0.01,eom
291,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5065110921859741,mcs-4_ms-2_cse-0.01_csm-leaf_lsi-10,126,[5937],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-leaf_lsi-10.feather,4,2,0.01,leaf
292,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48510316014289856,mcs-4_ms-2_cse-0.05_csm-eom_lsi-10,4,[202],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-eom_lsi-10.feather,4,2,0.05,eom
293,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48510316014289856,mcs-4_ms-2_cse-0.05_csm-leaf_lsi-10,4,[202],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-leaf_lsi-10.feather,4,2,0.05,leaf
294,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-4_ms-2_cse-0.1_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-eom_lsi-10.feather,4,2,0.1,eom
295,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-4_ms-2_cse-0.1_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-leaf_lsi-10.feather,4,2,0.1,leaf
296,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-4_ms-2_cse-0.15_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-eom_lsi-10.feather,4,2,0.15,eom
297,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-4_ms-2_cse-0.15_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-leaf_lsi-10.feather,4,2,0.15,leaf
298,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-4_ms-2_cse-0.2_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-eom_lsi-10.feather,4,2,0.2,eom
299,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-4_ms-2_cse-0.2_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-leaf_lsi-10.feather,4,2,0.2,leaf
300,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2614326477050781,mcs-4_ms-3_cse-0.0_csm-eom_lsi-10,145,[8791],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-eom_lsi-10.feather,4,3,0.0,eom
301,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2772795855998993,mcs-4_ms-3_cse-0.0_csm-leaf_lsi-10,152,[8897],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-leaf_lsi-10.feather,4,3,0.0,leaf
302,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5189304351806641,mcs-4_ms-3_cse-0.01_csm-eom_lsi-10,74,[6924],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-eom_lsi-10.feather,4,3,0.01,eom
303,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5188183784484863,mcs-4_ms-3_cse-0.01_csm-leaf_lsi-10,76,[6937],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-leaf_lsi-10.feather,4,3,0.01,leaf
304,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4892595410346985,mcs-4_ms-3_cse-0.05_csm-eom_lsi-10,4,[318],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-eom_lsi-10.feather,4,3,0.05,eom
305,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4892595410346985,mcs-4_ms-3_cse-0.05_csm-leaf_lsi-10,4,[318],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-leaf_lsi-10.feather,4,3,0.05,leaf
306,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-3_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-eom_lsi-10.feather,4,3,0.1,eom
307,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-3_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-leaf_lsi-10.feather,4,3,0.1,leaf
308,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-3_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-eom_lsi-10.feather,4,3,0.15,eom
309,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-3_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-leaf_lsi-10.feather,4,3,0.15,leaf
310,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-3_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-eom_lsi-10.feather,4,3,0.2,eom
311,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-3_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-leaf_lsi-10.feather,4,3,0.2,leaf
312,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.40605342388153076,mcs-4_ms-4_cse-0.0_csm-eom_lsi-10,87,[9092],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-eom_lsi-10.feather,4,4,0.0,eom
313,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.41302239894866943,mcs-4_ms-4_cse-0.0_csm-leaf_lsi-10,90,[9114],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-leaf_lsi-10.feather,4,4,0.0,leaf
314,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.45019015669822693,mcs-4_ms-4_cse-0.01_csm-eom_lsi-10,46,[7448],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-eom_lsi-10.feather,4,4,0.01,eom
315,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.451035737991333,mcs-4_ms-4_cse-0.01_csm-leaf_lsi-10,47,[7449],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-leaf_lsi-10.feather,4,4,0.01,leaf
316,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.492127925157547,mcs-4_ms-4_cse-0.05_csm-eom_lsi-10,4,[384],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-eom_lsi-10.feather,4,4,0.05,eom
317,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.492127925157547,mcs-4_ms-4_cse-0.05_csm-leaf_lsi-10,4,[384],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-leaf_lsi-10.feather,4,4,0.05,leaf
318,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-4_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-eom_lsi-10.feather,4,4,0.1,eom
319,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-4_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-leaf_lsi-10.feather,4,4,0.1,leaf
320,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-4_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-eom_lsi-10.feather,4,4,0.15,eom
321,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-4_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-leaf_lsi-10.feather,4,4,0.15,leaf
322,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-4_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-eom_lsi-10.feather,4,4,0.2,eom
323,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-4_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-leaf_lsi-10.feather,4,4,0.2,leaf
324,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47033578157424927,mcs-4_ms-5_cse-0.0_csm-eom_lsi-10,62,[9106],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-eom_lsi-10.feather,4,5,0.0,eom
325,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5118204355239868,mcs-4_ms-5_cse-0.0_csm-leaf_lsi-10,64,[9221],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-leaf_lsi-10.feather,4,5,0.0,leaf
326,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.32335174083709717,mcs-4_ms-5_cse-0.01_csm-eom_lsi-10,40,[7442],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-eom_lsi-10.feather,4,5,0.01,eom
327,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.32335174083709717,mcs-4_ms-5_cse-0.01_csm-leaf_lsi-10,40,[7442],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-leaf_lsi-10.feather,4,5,0.01,leaf
328,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2766146659851074,mcs-4_ms-5_cse-0.05_csm-eom_lsi-10,5,[658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-eom_lsi-10.feather,4,5,0.05,eom
329,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2766146659851074,mcs-4_ms-5_cse-0.05_csm-leaf_lsi-10,5,[658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-leaf_lsi-10.feather,4,5,0.05,leaf
330,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-5_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-eom_lsi-10.feather,4,5,0.1,eom
331,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-5_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-leaf_lsi-10.feather,4,5,0.1,leaf
332,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-5_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-eom_lsi-10.feather,4,5,0.15,eom
333,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-5_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-leaf_lsi-10.feather,4,5,0.15,leaf
334,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-5_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-eom_lsi-10.feather,4,5,0.2,eom
335,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-4_ms-5_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-leaf_lsi-10.feather,4,5,0.2,leaf
336,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.07510831207036972,mcs-5_ms-2_cse-0.0_csm-eom_lsi-10,175,[8248],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-eom_lsi-10.feather,5,2,0.0,eom
337,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.07777916640043259,mcs-5_ms-2_cse-0.0_csm-leaf_lsi-10,186,[8405],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-leaf_lsi-10.feather,5,2,0.0,leaf
338,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5094396471977234,mcs-5_ms-2_cse-0.01_csm-eom_lsi-10,82,[6050],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-eom_lsi-10.feather,5,2,0.01,eom
339,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.5094396471977234,mcs-5_ms-2_cse-0.01_csm-leaf_lsi-10,82,[6050],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-leaf_lsi-10.feather,5,2,0.01,leaf
340,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48510316014289856,mcs-5_ms-2_cse-0.05_csm-eom_lsi-10,4,[202],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-eom_lsi-10.feather,5,2,0.05,eom
341,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48510316014289856,mcs-5_ms-2_cse-0.05_csm-leaf_lsi-10,4,[202],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-leaf_lsi-10.feather,5,2,0.05,leaf
342,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-5_ms-2_cse-0.1_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-eom_lsi-10.feather,5,2,0.1,eom
343,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-5_ms-2_cse-0.1_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-leaf_lsi-10.feather,5,2,0.1,leaf
344,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-5_ms-2_cse-0.15_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-eom_lsi-10.feather,5,2,0.15,eom
345,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-5_ms-2_cse-0.15_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-leaf_lsi-10.feather,5,2,0.15,leaf
346,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-5_ms-2_cse-0.2_csm-eom_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-eom_lsi-10.feather,5,2,0.2,eom
347,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5582084655761719,mcs-5_ms-2_cse-0.2_csm-leaf_lsi-10,2,[],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-leaf_lsi-10.feather,5,2,0.2,leaf
348,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2459602952003479,mcs-5_ms-3_cse-0.0_csm-eom_lsi-10,88,[8936],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-eom_lsi-10.feather,5,3,0.0,eom
349,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.29869675636291504,mcs-5_ms-3_cse-0.0_csm-leaf_lsi-10,92,[9002],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-leaf_lsi-10.feather,5,3,0.0,leaf
350,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.4845811724662781,mcs-5_ms-3_cse-0.01_csm-eom_lsi-10,45,[7017],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-eom_lsi-10.feather,5,3,0.01,eom
351,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.48282355070114136,mcs-5_ms-3_cse-0.01_csm-leaf_lsi-10,46,[7026],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-leaf_lsi-10.feather,5,3,0.01,leaf
352,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4892595410346985,mcs-5_ms-3_cse-0.05_csm-eom_lsi-10,4,[318],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-eom_lsi-10.feather,5,3,0.05,eom
353,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4892595410346985,mcs-5_ms-3_cse-0.05_csm-leaf_lsi-10,4,[318],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-leaf_lsi-10.feather,5,3,0.05,leaf
354,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-3_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-eom_lsi-10.feather,5,3,0.1,eom
355,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-3_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-leaf_lsi-10.feather,5,3,0.1,leaf
356,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-3_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-eom_lsi-10.feather,5,3,0.15,eom
357,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-3_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-leaf_lsi-10.feather,5,3,0.15,leaf
358,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-3_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-eom_lsi-10.feather,5,3,0.2,eom
359,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-3_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-leaf_lsi-10.feather,5,3,0.2,leaf
360,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4385663568973541,mcs-5_ms-4_cse-0.0_csm-eom_lsi-10,66,[9120],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-eom_lsi-10.feather,5,4,0.0,eom
361,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.42989832162857056,mcs-5_ms-4_cse-0.0_csm-leaf_lsi-10,68,[9170],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-leaf_lsi-10.feather,5,4,0.0,leaf
362,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.3327120244503021,mcs-5_ms-4_cse-0.01_csm-eom_lsi-10,38,[7480],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-eom_lsi-10.feather,5,4,0.01,eom
363,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.3327120244503021,mcs-5_ms-4_cse-0.01_csm-leaf_lsi-10,38,[7480],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-leaf_lsi-10.feather,5,4,0.01,leaf
364,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.492127925157547,mcs-5_ms-4_cse-0.05_csm-eom_lsi-10,4,[384],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-eom_lsi-10.feather,5,4,0.05,eom
365,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.492127925157547,mcs-5_ms-4_cse-0.05_csm-leaf_lsi-10,4,[384],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-leaf_lsi-10.feather,5,4,0.05,leaf
366,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-4_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-eom_lsi-10.feather,5,4,0.1,eom
367,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-4_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-leaf_lsi-10.feather,5,4,0.1,leaf
368,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-4_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-eom_lsi-10.feather,5,4,0.15,eom
369,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-4_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-leaf_lsi-10.feather,5,4,0.15,leaf
370,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-4_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-eom_lsi-10.feather,5,4,0.2,eom
371,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-4_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-leaf_lsi-10.feather,5,4,0.2,leaf
372,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5702884793281555,mcs-5_ms-5_cse-0.0_csm-eom_lsi-10,51,[9150],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-eom_lsi-10.feather,5,5,0.0,eom
373,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5144424438476562,mcs-5_ms-5_cse-0.0_csm-leaf_lsi-10,53,[9265],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-leaf_lsi-10.feather,5,5,0.0,leaf
374,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.24486741423606873,mcs-5_ms-5_cse-0.01_csm-eom_lsi-10,31,[7401],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-eom_lsi-10.feather,5,5,0.01,eom
375,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.24486741423606873,mcs-5_ms-5_cse-0.01_csm-leaf_lsi-10,31,[7401],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-leaf_lsi-10.feather,5,5,0.01,leaf
376,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2766146659851074,mcs-5_ms-5_cse-0.05_csm-eom_lsi-10,5,[658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-eom_lsi-10.feather,5,5,0.05,eom
377,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2766146659851074,mcs-5_ms-5_cse-0.05_csm-leaf_lsi-10,5,[658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-leaf_lsi-10.feather,5,5,0.05,leaf
378,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-5_cse-0.1_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-eom_lsi-10.feather,5,5,0.1,eom
379,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-5_cse-0.1_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-leaf_lsi-10.feather,5,5,0.1,leaf
380,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-5_cse-0.15_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-eom_lsi-10.feather,5,5,0.15,eom
381,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-5_cse-0.15_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-leaf_lsi-10.feather,5,5,0.15,leaf
382,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-5_cse-0.2_csm-eom_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-eom_lsi-10.feather,5,5,0.2,eom
383,10,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.558291494846344,mcs-5_ms-5_cse-0.2_csm-leaf_lsi-10,3,1,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-leaf_lsi-10.feather,5,5,0.2,leaf
384,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3213278651237488,mcs-2_ms-2_cse-0.0_csm-eom_lsi-50,606,[6862],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-eom_lsi-50.feather,2,2,0.0,eom
385,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3512648046016693,mcs-2_ms-2_cse-0.0_csm-leaf_lsi-50,705,[7410],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-leaf_lsi-50.feather,2,2,0.0,leaf
386,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3237638771533966,mcs-2_ms-2_cse-0.01_csm-eom_lsi-50,594,[6768],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-eom_lsi-50.feather,2,2,0.01,eom
387,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.35526326298713684,mcs-2_ms-2_cse-0.01_csm-leaf_lsi-50,671,[7173],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-leaf_lsi-50.feather,2,2,0.01,leaf
388,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.007908710278570652,mcs-2_ms-2_cse-0.05_csm-eom_lsi-50,427,[5873],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-eom_lsi-50.feather,2,2,0.05,eom
389,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0071458229795098305,mcs-2_ms-2_cse-0.05_csm-leaf_lsi-50,442,[5909],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-leaf_lsi-50.feather,2,2,0.05,leaf
390,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.4779036045074463,mcs-2_ms-2_cse-0.1_csm-eom_lsi-50,137,[3294],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-eom_lsi-50.feather,2,2,0.1,eom
391,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.47795313596725464,mcs-2_ms-2_cse-0.1_csm-leaf_lsi-50,138,[3294],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-leaf_lsi-50.feather,2,2,0.1,leaf
392,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.3067433834075928,mcs-2_ms-2_cse-0.15_csm-eom_lsi-50,25,[1193],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-eom_lsi-50.feather,2,2,0.15,eom
393,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.3067433834075928,mcs-2_ms-2_cse-0.15_csm-leaf_lsi-50,25,[1193],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-leaf_lsi-50.feather,2,2,0.15,leaf
394,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.06842215359210968,mcs-2_ms-2_cse-0.2_csm-eom_lsi-50,7,[119],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-eom_lsi-50.feather,2,2,0.2,eom
395,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.06842215359210968,mcs-2_ms-2_cse-0.2_csm-leaf_lsi-50,7,[119],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-leaf_lsi-50.feather,2,2,0.2,leaf
396,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3783159852027893,mcs-2_ms-3_cse-0.0_csm-eom_lsi-50,405,[7438],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-eom_lsi-50.feather,2,3,0.0,eom
397,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.37399324774742126,mcs-2_ms-3_cse-0.0_csm-leaf_lsi-50,462,[7933],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-leaf_lsi-50.feather,2,3,0.0,leaf
398,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3642917275428772,mcs-2_ms-3_cse-0.01_csm-eom_lsi-50,400,[7359],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-eom_lsi-50.feather,2,3,0.01,eom
399,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.37698498368263245,mcs-2_ms-3_cse-0.01_csm-leaf_lsi-50,441,[7685],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-leaf_lsi-50.feather,2,3,0.01,leaf
400,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.06069137156009674,mcs-2_ms-3_cse-0.05_csm-eom_lsi-50,299,[6584],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-eom_lsi-50.feather,2,3,0.05,eom
401,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.060478728264570236,mcs-2_ms-3_cse-0.05_csm-leaf_lsi-50,306,[6611],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-leaf_lsi-50.feather,2,3,0.05,leaf
402,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.47071224451065063,mcs-2_ms-3_cse-0.1_csm-eom_lsi-50,100,[3988],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-eom_lsi-50.feather,2,3,0.1,eom
403,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.4712139368057251,mcs-2_ms-3_cse-0.1_csm-leaf_lsi-50,101,[3989],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-leaf_lsi-50.feather,2,3,0.1,leaf
404,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.22081951797008514,mcs-2_ms-3_cse-0.15_csm-eom_lsi-50,21,[1567],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-eom_lsi-50.feather,2,3,0.15,eom
405,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.22081951797008514,mcs-2_ms-3_cse-0.15_csm-leaf_lsi-50,21,[1567],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-leaf_lsi-50.feather,2,3,0.15,leaf
406,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.09040141105651855,mcs-2_ms-3_cse-0.2_csm-eom_lsi-50,7,[436],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-eom_lsi-50.feather,2,3,0.2,eom
407,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.09040141105651855,mcs-2_ms-3_cse-0.2_csm-leaf_lsi-50,7,[436],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-leaf_lsi-50.feather,2,3,0.2,leaf
408,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.40712878108024597,mcs-2_ms-4_cse-0.0_csm-eom_lsi-50,294,[7611],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-eom_lsi-50.feather,2,4,0.0,eom
409,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.36204227805137634,mcs-2_ms-4_cse-0.0_csm-leaf_lsi-50,335,[8180],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-leaf_lsi-50.feather,2,4,0.0,leaf
410,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4050922989845276,mcs-2_ms-4_cse-0.01_csm-eom_lsi-50,293,[7580],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-eom_lsi-50.feather,2,4,0.01,eom
411,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.396782249212265,mcs-2_ms-4_cse-0.01_csm-leaf_lsi-50,325,[8016],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-leaf_lsi-50.feather,2,4,0.01,leaf
412,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12182807177305222,mcs-2_ms-4_cse-0.05_csm-eom_lsi-50,231,[6917],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-eom_lsi-50.feather,2,4,0.05,eom
413,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.11612294614315033,mcs-2_ms-4_cse-0.05_csm-leaf_lsi-50,235,[6941],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-leaf_lsi-50.feather,2,4,0.05,leaf
414,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.43369418382644653,mcs-2_ms-4_cse-0.1_csm-eom_lsi-50,83,[4428],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-eom_lsi-50.feather,2,4,0.1,eom
415,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.43369418382644653,mcs-2_ms-4_cse-0.1_csm-leaf_lsi-50,83,[4428],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-leaf_lsi-50.feather,2,4,0.1,leaf
416,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.23435837030410767,mcs-2_ms-4_cse-0.15_csm-eom_lsi-50,18,[1906],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-eom_lsi-50.feather,2,4,0.15,eom
417,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.23435837030410767,mcs-2_ms-4_cse-0.15_csm-leaf_lsi-50,18,[1906],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-leaf_lsi-50.feather,2,4,0.15,leaf
418,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.02053615264594555,mcs-2_ms-4_cse-0.2_csm-eom_lsi-50,7,[219],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-eom_lsi-50.feather,2,4,0.2,eom
419,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.02053615264594555,mcs-2_ms-4_cse-0.2_csm-leaf_lsi-50,7,[219],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-leaf_lsi-50.feather,2,4,0.2,leaf
420,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4541623294353485,mcs-2_ms-5_cse-0.0_csm-eom_lsi-50,236,[7805],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-eom_lsi-50.feather,2,5,0.0,eom
421,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.444304496049881,mcs-2_ms-5_cse-0.0_csm-leaf_lsi-50,272,[8345],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-leaf_lsi-50.feather,2,5,0.0,leaf
422,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4608847200870514,mcs-2_ms-5_cse-0.01_csm-eom_lsi-50,235,[7752],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-eom_lsi-50.feather,2,5,0.01,eom
423,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47181734442710876,mcs-2_ms-5_cse-0.01_csm-leaf_lsi-50,262,[8163],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-leaf_lsi-50.feather,2,5,0.01,leaf
424,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.1641259491443634,mcs-2_ms-5_cse-0.05_csm-eom_lsi-50,194,[7220],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-eom_lsi-50.feather,2,5,0.05,eom
425,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.15554183721542358,mcs-2_ms-5_cse-0.05_csm-leaf_lsi-50,198,[7295],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-leaf_lsi-50.feather,2,5,0.05,leaf
426,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.3707488477230072,mcs-2_ms-5_cse-0.1_csm-eom_lsi-50,72,[4788],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-eom_lsi-50.feather,2,5,0.1,eom
427,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.3707488477230072,mcs-2_ms-5_cse-0.1_csm-leaf_lsi-50,72,[4788],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-leaf_lsi-50.feather,2,5,0.1,leaf
428,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.27005258202552795,mcs-2_ms-5_cse-0.15_csm-eom_lsi-50,14,[2194],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-eom_lsi-50.feather,2,5,0.15,eom
429,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.27005258202552795,mcs-2_ms-5_cse-0.15_csm-leaf_lsi-50,14,[2194],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-leaf_lsi-50.feather,2,5,0.15,leaf
430,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.03855575993657112,mcs-2_ms-5_cse-0.2_csm-eom_lsi-50,7,[627],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-eom_lsi-50.feather,2,5,0.2,eom
431,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.03855575993657112,mcs-2_ms-5_cse-0.2_csm-leaf_lsi-50,7,[627],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-leaf_lsi-50.feather,2,5,0.2,leaf
432,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.374900221824646,mcs-3_ms-2_cse-0.0_csm-eom_lsi-50,341,[7179],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-eom_lsi-50.feather,3,2,0.0,eom
433,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.38338562846183777,mcs-3_ms-2_cse-0.0_csm-leaf_lsi-50,379,[7645],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-leaf_lsi-50.feather,3,2,0.0,leaf
434,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3817536532878876,mcs-3_ms-2_cse-0.01_csm-eom_lsi-50,336,[7100],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-eom_lsi-50.feather,3,2,0.01,eom
435,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3996818959712982,mcs-3_ms-2_cse-0.01_csm-leaf_lsi-50,364,[7417],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-leaf_lsi-50.feather,3,2,0.01,leaf
436,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.062394171953201294,mcs-3_ms-2_cse-0.05_csm-eom_lsi-50,233,[6155],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-eom_lsi-50.feather,3,2,0.05,eom
437,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.06101759895682335,mcs-3_ms-2_cse-0.05_csm-leaf_lsi-50,238,[6172],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-leaf_lsi-50.feather,3,2,0.05,leaf
438,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.39846810698509216,mcs-3_ms-2_cse-0.1_csm-eom_lsi-50,73,[3415],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-eom_lsi-50.feather,3,2,0.1,eom
439,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.39846810698509216,mcs-3_ms-2_cse-0.1_csm-leaf_lsi-50,73,[3415],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-leaf_lsi-50.feather,3,2,0.1,leaf
440,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.19361791014671326,mcs-3_ms-2_cse-0.15_csm-eom_lsi-50,15,[1213],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-eom_lsi-50.feather,3,2,0.15,eom
441,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.19361791014671326,mcs-3_ms-2_cse-0.15_csm-leaf_lsi-50,15,[1213],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-leaf_lsi-50.feather,3,2,0.15,leaf
442,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12148917466402054,mcs-3_ms-2_cse-0.2_csm-eom_lsi-50,6,[80],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-eom_lsi-50.feather,3,2,0.2,eom
443,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12148917466402054,mcs-3_ms-2_cse-0.2_csm-leaf_lsi-50,6,[80],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-leaf_lsi-50.feather,3,2,0.2,leaf
444,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48270687460899353,mcs-3_ms-3_cse-0.0_csm-eom_lsi-50,197,[7597],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-eom_lsi-50.feather,3,3,0.0,eom
445,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.484925240278244,mcs-3_ms-3_cse-0.0_csm-leaf_lsi-50,212,[7800],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-leaf_lsi-50.feather,3,3,0.0,leaf
446,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.485562264919281,mcs-3_ms-3_cse-0.01_csm-eom_lsi-50,196,[7564],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-eom_lsi-50.feather,3,3,0.01,eom
447,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48432332277297974,mcs-3_ms-3_cse-0.01_csm-leaf_lsi-50,207,[7729],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-leaf_lsi-50.feather,3,3,0.01,leaf
448,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.16288797557353973,mcs-3_ms-3_cse-0.05_csm-eom_lsi-50,147,[6677],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-eom_lsi-50.feather,3,3,0.05,eom
449,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.16288797557353973,mcs-3_ms-3_cse-0.05_csm-leaf_lsi-50,147,[6677],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-leaf_lsi-50.feather,3,3,0.05,leaf
450,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.3145780861377716,mcs-3_ms-3_cse-0.1_csm-eom_lsi-50,43,[3972],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-eom_lsi-50.feather,3,3,0.1,eom
451,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.3145780861377716,mcs-3_ms-3_cse-0.1_csm-leaf_lsi-50,43,[3972],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-leaf_lsi-50.feather,3,3,0.1,leaf
452,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.028699958696961403,mcs-3_ms-3_cse-0.15_csm-eom_lsi-50,10,[1589],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-eom_lsi-50.feather,3,3,0.15,eom
453,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.028699958696961403,mcs-3_ms-3_cse-0.15_csm-leaf_lsi-50,10,[1589],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-leaf_lsi-50.feather,3,3,0.15,leaf
454,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12299744039773941,mcs-3_ms-3_cse-0.2_csm-eom_lsi-50,6,[126],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-eom_lsi-50.feather,3,3,0.2,eom
455,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12299744039773941,mcs-3_ms-3_cse-0.2_csm-leaf_lsi-50,6,[126],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-leaf_lsi-50.feather,3,3,0.2,leaf
456,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5362961292266846,mcs-3_ms-4_cse-0.0_csm-eom_lsi-50,141,[7823],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-eom_lsi-50.feather,3,4,0.0,eom
457,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5411844849586487,mcs-3_ms-4_cse-0.0_csm-leaf_lsi-50,150,[8020],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-leaf_lsi-50.feather,3,4,0.0,leaf
458,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5362961292266846,mcs-3_ms-4_cse-0.01_csm-eom_lsi-50,141,[7823],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-eom_lsi-50.feather,3,4,0.01,eom
459,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5361725687980652,mcs-3_ms-4_cse-0.01_csm-leaf_lsi-50,148,[7986],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-leaf_lsi-50.feather,3,4,0.01,leaf
460,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.23567718267440796,mcs-3_ms-4_cse-0.05_csm-eom_lsi-50,110,[7011],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-eom_lsi-50.feather,3,4,0.05,eom
461,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.23567718267440796,mcs-3_ms-4_cse-0.05_csm-leaf_lsi-50,110,[7011],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-leaf_lsi-50.feather,3,4,0.05,leaf
462,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.24758456647396088,mcs-3_ms-4_cse-0.1_csm-eom_lsi-50,32,[4521],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-eom_lsi-50.feather,3,4,0.1,eom
463,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.24758456647396088,mcs-3_ms-4_cse-0.1_csm-leaf_lsi-50,32,[4521],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-leaf_lsi-50.feather,3,4,0.1,leaf
464,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.05399584397673607,mcs-3_ms-4_cse-0.15_csm-eom_lsi-50,7,[1928],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-eom_lsi-50.feather,3,4,0.15,eom
465,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.05399584397673607,mcs-3_ms-4_cse-0.15_csm-leaf_lsi-50,7,[1928],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-leaf_lsi-50.feather,3,4,0.15,leaf
466,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.10757294297218323,mcs-3_ms-4_cse-0.2_csm-eom_lsi-50,6,[165],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-eom_lsi-50.feather,3,4,0.2,eom
467,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.10757294297218323,mcs-3_ms-4_cse-0.2_csm-leaf_lsi-50,6,[165],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-leaf_lsi-50.feather,3,4,0.2,leaf
468,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5731501579284668,mcs-3_ms-5_cse-0.0_csm-eom_lsi-50,114,[7854],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-eom_lsi-50.feather,3,5,0.0,eom
469,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5787339806556702,mcs-3_ms-5_cse-0.0_csm-leaf_lsi-50,120,[8098],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-leaf_lsi-50.feather,3,5,0.0,leaf
470,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5731501579284668,mcs-3_ms-5_cse-0.01_csm-eom_lsi-50,114,[7854],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-eom_lsi-50.feather,3,5,0.01,eom
471,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5732218623161316,mcs-3_ms-5_cse-0.01_csm-leaf_lsi-50,118,[8049],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-leaf_lsi-50.feather,3,5,0.01,leaf
472,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.26900240778923035,mcs-3_ms-5_cse-0.05_csm-eom_lsi-50,91,[7148],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-eom_lsi-50.feather,3,5,0.05,eom
473,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.26900240778923035,mcs-3_ms-5_cse-0.05_csm-leaf_lsi-50,91,[7148],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-leaf_lsi-50.feather,3,5,0.05,leaf
474,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.14539414644241333,mcs-3_ms-5_cse-0.1_csm-eom_lsi-50,26,[4830],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-eom_lsi-50.feather,3,5,0.1,eom
475,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.14539414644241333,mcs-3_ms-5_cse-0.1_csm-leaf_lsi-50,26,[4830],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-leaf_lsi-50.feather,3,5,0.1,leaf
476,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0675249770283699,mcs-3_ms-5_cse-0.15_csm-eom_lsi-50,7,[2208],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-eom_lsi-50.feather,3,5,0.15,eom
477,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0675249770283699,mcs-3_ms-5_cse-0.15_csm-leaf_lsi-50,7,[2208],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-leaf_lsi-50.feather,3,5,0.15,leaf
478,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2361723631620407,mcs-3_ms-5_cse-0.2_csm-eom_lsi-50,5,[225],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-eom_lsi-50.feather,3,5,0.2,eom
479,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2361723631620407,mcs-3_ms-5_cse-0.2_csm-leaf_lsi-50,5,[225],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-leaf_lsi-50.feather,3,5,0.2,leaf
480,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.41691169142723083,mcs-4_ms-2_cse-0.0_csm-eom_lsi-50,221,[7121],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-eom_lsi-50.feather,4,2,0.0,eom
481,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4153018891811371,mcs-4_ms-2_cse-0.0_csm-leaf_lsi-50,247,[7518],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-leaf_lsi-50.feather,4,2,0.0,leaf
482,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.42103567719459534,mcs-4_ms-2_cse-0.01_csm-eom_lsi-50,220,[7089],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-eom_lsi-50.feather,4,2,0.01,eom
483,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4358128607273102,mcs-4_ms-2_cse-0.01_csm-leaf_lsi-50,239,[7402],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-leaf_lsi-50.feather,4,2,0.01,leaf
484,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12178591638803482,mcs-4_ms-2_cse-0.05_csm-eom_lsi-50,160,[6221],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-eom_lsi-50.feather,4,2,0.05,eom
485,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.11904536187648773,mcs-4_ms-2_cse-0.05_csm-leaf_lsi-50,162,[6236],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-leaf_lsi-50.feather,4,2,0.05,leaf
486,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.35374847054481506,mcs-4_ms-2_cse-0.1_csm-eom_lsi-50,54,[3467],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-eom_lsi-50.feather,4,2,0.1,eom
487,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.35374847054481506,mcs-4_ms-2_cse-0.1_csm-leaf_lsi-50,54,[3467],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-leaf_lsi-50.feather,4,2,0.1,leaf
488,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.09679191559553146,mcs-4_ms-2_cse-0.15_csm-eom_lsi-50,11,[1225],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-eom_lsi-50.feather,4,2,0.15,eom
489,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.09679191559553146,mcs-4_ms-2_cse-0.15_csm-leaf_lsi-50,11,[1225],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-leaf_lsi-50.feather,4,2,0.15,leaf
490,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12148917466402054,mcs-4_ms-2_cse-0.2_csm-eom_lsi-50,6,[80],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-eom_lsi-50.feather,4,2,0.2,eom
491,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12148917466402054,mcs-4_ms-2_cse-0.2_csm-leaf_lsi-50,6,[80],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-leaf_lsi-50.feather,4,2,0.2,leaf
492,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5094141960144043,mcs-4_ms-3_cse-0.0_csm-eom_lsi-50,152,[7543],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-eom_lsi-50.feather,4,3,0.0,eom
493,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.528401255607605,mcs-4_ms-3_cse-0.0_csm-leaf_lsi-50,159,[7738],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-leaf_lsi-50.feather,4,3,0.0,leaf
494,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5094141960144043,mcs-4_ms-3_cse-0.01_csm-eom_lsi-50,152,[7543],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-eom_lsi-50.feather,4,3,0.01,eom
495,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5239163041114807,mcs-4_ms-3_cse-0.01_csm-leaf_lsi-50,156,[7697],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-leaf_lsi-50.feather,4,3,0.01,leaf
496,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.19773806631565094,mcs-4_ms-3_cse-0.05_csm-eom_lsi-50,116,[6748],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-eom_lsi-50.feather,4,3,0.05,eom
497,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.19773806631565094,mcs-4_ms-3_cse-0.05_csm-leaf_lsi-50,116,[6748],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-leaf_lsi-50.feather,4,3,0.05,leaf
498,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.29617956280708313,mcs-4_ms-3_cse-0.1_csm-eom_lsi-50,33,[4002],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-eom_lsi-50.feather,4,3,0.1,eom
499,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.29617956280708313,mcs-4_ms-3_cse-0.1_csm-leaf_lsi-50,33,[4002],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-leaf_lsi-50.feather,4,3,0.1,leaf
500,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.007892416790127754,mcs-4_ms-3_cse-0.15_csm-eom_lsi-50,9,[1592],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-eom_lsi-50.feather,4,3,0.15,eom
501,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.007892416790127754,mcs-4_ms-3_cse-0.15_csm-leaf_lsi-50,9,[1592],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-leaf_lsi-50.feather,4,3,0.15,leaf
502,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12299744039773941,mcs-4_ms-3_cse-0.2_csm-eom_lsi-50,6,[126],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-eom_lsi-50.feather,4,3,0.2,eom
503,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12299744039773941,mcs-4_ms-3_cse-0.2_csm-leaf_lsi-50,6,[126],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-leaf_lsi-50.feather,4,3,0.2,leaf
504,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5487390756607056,mcs-4_ms-4_cse-0.0_csm-eom_lsi-50,117,[7744],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-eom_lsi-50.feather,4,4,0.0,eom
505,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5488279461860657,mcs-4_ms-4_cse-0.0_csm-leaf_lsi-50,120,[7823],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-leaf_lsi-50.feather,4,4,0.0,leaf
506,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5487390756607056,mcs-4_ms-4_cse-0.01_csm-eom_lsi-50,117,[7744],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-eom_lsi-50.feather,4,4,0.01,eom
507,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5461409091949463,mcs-4_ms-4_cse-0.01_csm-leaf_lsi-50,119,[7781],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-leaf_lsi-50.feather,4,4,0.01,leaf
508,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.26052913069725037,mcs-4_ms-4_cse-0.05_csm-eom_lsi-50,93,[7014],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-eom_lsi-50.feather,4,4,0.05,eom
509,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.26052913069725037,mcs-4_ms-4_cse-0.05_csm-leaf_lsi-50,93,[7014],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-leaf_lsi-50.feather,4,4,0.05,leaf
510,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.2348361760377884,mcs-4_ms-4_cse-0.1_csm-eom_lsi-50,29,[4530],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-eom_lsi-50.feather,4,4,0.1,eom
511,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.2348361760377884,mcs-4_ms-4_cse-0.1_csm-leaf_lsi-50,29,[4530],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-leaf_lsi-50.feather,4,4,0.1,leaf
512,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.05399584397673607,mcs-4_ms-4_cse-0.15_csm-eom_lsi-50,7,[1928],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-eom_lsi-50.feather,4,4,0.15,eom
513,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.05399584397673607,mcs-4_ms-4_cse-0.15_csm-leaf_lsi-50,7,[1928],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-leaf_lsi-50.feather,4,4,0.15,leaf
514,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.10757294297218323,mcs-4_ms-4_cse-0.2_csm-eom_lsi-50,6,[165],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-eom_lsi-50.feather,4,4,0.2,eom
515,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.10757294297218323,mcs-4_ms-4_cse-0.2_csm-leaf_lsi-50,6,[165],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-leaf_lsi-50.feather,4,4,0.2,leaf
516,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6049410700798035,mcs-4_ms-5_cse-0.0_csm-eom_lsi-50,95,[7827],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-eom_lsi-50.feather,4,5,0.0,eom
517,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6149115562438965,mcs-4_ms-5_cse-0.0_csm-leaf_lsi-50,98,[7927],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-leaf_lsi-50.feather,4,5,0.0,leaf
518,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6049410700798035,mcs-4_ms-5_cse-0.01_csm-eom_lsi-50,95,[7827],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-eom_lsi-50.feather,4,5,0.01,eom
519,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6073437333106995,mcs-4_ms-5_cse-0.01_csm-leaf_lsi-50,97,[7882],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-leaf_lsi-50.feather,4,5,0.01,leaf
520,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.33274975419044495,mcs-4_ms-5_cse-0.05_csm-eom_lsi-50,76,[7177],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-eom_lsi-50.feather,4,5,0.05,eom
521,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.33274975419044495,mcs-4_ms-5_cse-0.05_csm-leaf_lsi-50,76,[7177],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-leaf_lsi-50.feather,4,5,0.05,leaf
522,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.12978726625442505,mcs-4_ms-5_cse-0.1_csm-eom_lsi-50,24,[4836],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-eom_lsi-50.feather,4,5,0.1,eom
523,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.12978726625442505,mcs-4_ms-5_cse-0.1_csm-leaf_lsi-50,24,[4836],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-leaf_lsi-50.feather,4,5,0.1,leaf
524,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0675249770283699,mcs-4_ms-5_cse-0.15_csm-eom_lsi-50,7,[2208],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-eom_lsi-50.feather,4,5,0.15,eom
525,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0675249770283699,mcs-4_ms-5_cse-0.15_csm-leaf_lsi-50,7,[2208],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-leaf_lsi-50.feather,4,5,0.15,leaf
526,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2361723631620407,mcs-4_ms-5_cse-0.2_csm-eom_lsi-50,5,[225],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-eom_lsi-50.feather,4,5,0.2,eom
527,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2361723631620407,mcs-4_ms-5_cse-0.2_csm-leaf_lsi-50,5,[225],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-leaf_lsi-50.feather,4,5,0.2,leaf
528,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4594685733318329,mcs-5_ms-2_cse-0.0_csm-eom_lsi-50,167,[7238],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-eom_lsi-50.feather,5,2,0.0,eom
529,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.46611130237579346,mcs-5_ms-2_cse-0.0_csm-leaf_lsi-50,183,[7538],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-leaf_lsi-50.feather,5,2,0.0,leaf
530,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.46326690912246704,mcs-5_ms-2_cse-0.01_csm-eom_lsi-50,166,[7206],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-eom_lsi-50.feather,5,2,0.01,eom
531,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4649171531200409,mcs-5_ms-2_cse-0.01_csm-leaf_lsi-50,179,[7496],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-leaf_lsi-50.feather,5,2,0.01,leaf
532,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.14689771831035614,mcs-5_ms-2_cse-0.05_csm-eom_lsi-50,119,[6361],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-eom_lsi-50.feather,5,2,0.05,eom
533,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.14439626038074493,mcs-5_ms-2_cse-0.05_csm-leaf_lsi-50,120,[6369],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-leaf_lsi-50.feather,5,2,0.05,leaf
534,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.28489136695861816,mcs-5_ms-2_cse-0.1_csm-eom_lsi-50,34,[3547],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-eom_lsi-50.feather,5,2,0.1,eom
535,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.28489136695861816,mcs-5_ms-2_cse-0.1_csm-leaf_lsi-50,34,[3547],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-leaf_lsi-50.feather,5,2,0.1,leaf
536,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.012455807067453861,mcs-5_ms-2_cse-0.15_csm-eom_lsi-50,9,[1233],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-eom_lsi-50.feather,5,2,0.15,eom
537,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.012455807067453861,mcs-5_ms-2_cse-0.15_csm-leaf_lsi-50,9,[1233],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-leaf_lsi-50.feather,5,2,0.15,leaf
538,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12148917466402054,mcs-5_ms-2_cse-0.2_csm-eom_lsi-50,6,[80],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-eom_lsi-50.feather,5,2,0.2,eom
539,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12148917466402054,mcs-5_ms-2_cse-0.2_csm-leaf_lsi-50,6,[80],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-leaf_lsi-50.feather,5,2,0.2,leaf
540,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5354724526405334,mcs-5_ms-3_cse-0.0_csm-eom_lsi-50,127,[7627],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-eom_lsi-50.feather,5,3,0.0,eom
541,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5381743311882019,mcs-5_ms-3_cse-0.0_csm-leaf_lsi-50,131,[7662],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-leaf_lsi-50.feather,5,3,0.0,leaf
542,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5354724526405334,mcs-5_ms-3_cse-0.01_csm-eom_lsi-50,127,[7627],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-eom_lsi-50.feather,5,3,0.01,eom
543,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.537095844745636,mcs-5_ms-3_cse-0.01_csm-leaf_lsi-50,129,[7639],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-leaf_lsi-50.feather,5,3,0.01,leaf
544,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2088395655155182,mcs-5_ms-3_cse-0.05_csm-eom_lsi-50,97,[6782],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-eom_lsi-50.feather,5,3,0.05,eom
545,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2088395655155182,mcs-5_ms-3_cse-0.05_csm-leaf_lsi-50,97,[6782],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-leaf_lsi-50.feather,5,3,0.05,leaf
546,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.23105572164058685,mcs-5_ms-3_cse-0.1_csm-eom_lsi-50,24,[4034],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-eom_lsi-50.feather,5,3,0.1,eom
547,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.23105572164058685,mcs-5_ms-3_cse-0.1_csm-leaf_lsi-50,24,[4034],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-leaf_lsi-50.feather,5,3,0.1,leaf
548,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.007892416790127754,mcs-5_ms-3_cse-0.15_csm-eom_lsi-50,9,[1592],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-eom_lsi-50.feather,5,3,0.15,eom
549,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.007892416790127754,mcs-5_ms-3_cse-0.15_csm-leaf_lsi-50,9,[1592],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-leaf_lsi-50.feather,5,3,0.15,leaf
550,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12299744039773941,mcs-5_ms-3_cse-0.2_csm-eom_lsi-50,6,[126],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-eom_lsi-50.feather,5,3,0.2,eom
551,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12299744039773941,mcs-5_ms-3_cse-0.2_csm-leaf_lsi-50,6,[126],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-leaf_lsi-50.feather,5,3,0.2,leaf
552,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5793739557266235,mcs-5_ms-4_cse-0.0_csm-eom_lsi-50,98,[7694],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-eom_lsi-50.feather,5,4,0.0,eom
553,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5817530155181885,mcs-5_ms-4_cse-0.0_csm-leaf_lsi-50,100,[7765],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-leaf_lsi-50.feather,5,4,0.0,leaf
554,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5793739557266235,mcs-5_ms-4_cse-0.01_csm-eom_lsi-50,98,[7694],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-eom_lsi-50.feather,5,4,0.01,eom
555,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.578504204750061,mcs-5_ms-4_cse-0.01_csm-leaf_lsi-50,99,[7723],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-leaf_lsi-50.feather,5,4,0.01,leaf
556,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.31384986639022827,mcs-5_ms-4_cse-0.05_csm-eom_lsi-50,78,[7064],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-eom_lsi-50.feather,5,4,0.05,eom
557,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.31384986639022827,mcs-5_ms-4_cse-0.05_csm-leaf_lsi-50,78,[7064],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-leaf_lsi-50.feather,5,4,0.05,leaf
558,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.19217225909233093,mcs-5_ms-4_cse-0.1_csm-eom_lsi-50,23,[4549],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-eom_lsi-50.feather,5,4,0.1,eom
559,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.19217225909233093,mcs-5_ms-4_cse-0.1_csm-leaf_lsi-50,23,[4549],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-leaf_lsi-50.feather,5,4,0.1,leaf
560,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.08678510785102844,mcs-5_ms-4_cse-0.15_csm-eom_lsi-50,6,[1932],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-eom_lsi-50.feather,5,4,0.15,eom
561,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.08678510785102844,mcs-5_ms-4_cse-0.15_csm-leaf_lsi-50,6,[1932],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-leaf_lsi-50.feather,5,4,0.15,leaf
562,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.23489759862422943,mcs-5_ms-4_cse-0.2_csm-eom_lsi-50,5,[169],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-eom_lsi-50.feather,5,4,0.2,eom
563,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.23489759862422943,mcs-5_ms-4_cse-0.2_csm-leaf_lsi-50,5,[169],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-leaf_lsi-50.feather,5,4,0.2,leaf
564,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6148821711540222,mcs-5_ms-5_cse-0.0_csm-eom_lsi-50,84,[7794],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-eom_lsi-50.feather,5,5,0.0,eom
565,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6182160377502441,mcs-5_ms-5_cse-0.0_csm-leaf_lsi-50,86,[7827],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-leaf_lsi-50.feather,5,5,0.0,leaf
566,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6148821711540222,mcs-5_ms-5_cse-0.01_csm-eom_lsi-50,84,[7794],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-eom_lsi-50.feather,5,5,0.01,eom
567,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6182160377502441,mcs-5_ms-5_cse-0.01_csm-leaf_lsi-50,86,[7827],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-leaf_lsi-50.feather,5,5,0.01,leaf
568,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.35037899017333984,mcs-5_ms-5_cse-0.05_csm-eom_lsi-50,68,[7169],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-eom_lsi-50.feather,5,5,0.05,eom
569,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3509254455566406,mcs-5_ms-5_cse-0.05_csm-leaf_lsi-50,69,[7177],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-leaf_lsi-50.feather,5,5,0.05,leaf
570,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.12978726625442505,mcs-5_ms-5_cse-0.1_csm-eom_lsi-50,24,[4836],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-eom_lsi-50.feather,5,5,0.1,eom
571,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.12978726625442505,mcs-5_ms-5_cse-0.1_csm-leaf_lsi-50,24,[4836],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-leaf_lsi-50.feather,5,5,0.1,leaf
572,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0675249770283699,mcs-5_ms-5_cse-0.15_csm-eom_lsi-50,7,[2208],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-eom_lsi-50.feather,5,5,0.15,eom
573,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0675249770283699,mcs-5_ms-5_cse-0.15_csm-leaf_lsi-50,7,[2208],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-leaf_lsi-50.feather,5,5,0.15,leaf
574,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2361723631620407,mcs-5_ms-5_cse-0.2_csm-eom_lsi-50,5,[225],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-eom_lsi-50.feather,5,5,0.2,eom
575,50,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2361723631620407,mcs-5_ms-5_cse-0.2_csm-leaf_lsi-50,5,[225],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-leaf_lsi-50.feather,5,5,0.2,leaf
576,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4781457781791687,mcs-2_ms-2_cse-0.0_csm-eom_lsi-700,778,[4750],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-eom_lsi-700.feather,2,2,0.0,eom
577,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4743269085884094,mcs-2_ms-2_cse-0.0_csm-leaf_lsi-700,893,[5334],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-leaf_lsi-700.feather,2,2,0.0,leaf
578,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48379576206207275,mcs-2_ms-2_cse-0.01_csm-eom_lsi-700,775,[4683],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-eom_lsi-700.feather,2,2,0.01,eom
579,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4854855537414551,mcs-2_ms-2_cse-0.01_csm-leaf_lsi-700,884,[5252],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-leaf_lsi-700.feather,2,2,0.01,leaf
580,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48571282625198364,mcs-2_ms-2_cse-0.05_csm-eom_lsi-700,768,[4629],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-eom_lsi-700.feather,2,2,0.05,eom
581,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4927994906902313,mcs-2_ms-2_cse-0.05_csm-leaf_lsi-700,860,[5044],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-leaf_lsi-700.feather,2,2,0.05,leaf
582,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4780411422252655,mcs-2_ms-2_cse-0.1_csm-eom_lsi-700,751,[4508],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-eom_lsi-700.feather,2,2,0.1,eom
583,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48942214250564575,mcs-2_ms-2_cse-0.1_csm-leaf_lsi-700,818,[4770],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-leaf_lsi-700.feather,2,2,0.1,leaf
584,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.41843563318252563,mcs-2_ms-2_cse-0.15_csm-eom_lsi-700,705,[4280],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-eom_lsi-700.feather,2,2,0.15,eom
585,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4170876741409302,mcs-2_ms-2_cse-0.15_csm-leaf_lsi-700,738,[4385],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-leaf_lsi-700.feather,2,2,0.15,leaf
586,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.29105499386787415,mcs-2_ms-2_cse-0.2_csm-eom_lsi-700,608,[3968],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-eom_lsi-700.feather,2,2,0.2,eom
587,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2859398424625397,mcs-2_ms-2_cse-0.2_csm-leaf_lsi-700,627,[4002],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-leaf_lsi-700.feather,2,2,0.2,leaf
588,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5217779278755188,mcs-2_ms-3_cse-0.0_csm-eom_lsi-700,592,[5286],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-eom_lsi-700.feather,2,3,0.0,eom
589,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4947684407234192,mcs-2_ms-3_cse-0.0_csm-leaf_lsi-700,706,[6053],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-leaf_lsi-700.feather,2,3,0.0,leaf
590,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5241150259971619,mcs-2_ms-3_cse-0.01_csm-eom_lsi-700,591,[5267],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-eom_lsi-700.feather,2,3,0.01,eom
591,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5120218992233276,mcs-2_ms-3_cse-0.01_csm-leaf_lsi-700,692,[5894],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-leaf_lsi-700.feather,2,3,0.01,leaf
592,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5244974493980408,mcs-2_ms-3_cse-0.05_csm-eom_lsi-700,590,[5260],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-eom_lsi-700.feather,2,3,0.05,eom
593,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5259271860122681,mcs-2_ms-3_cse-0.05_csm-leaf_lsi-700,680,[5755],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-leaf_lsi-700.feather,2,3,0.05,leaf
594,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5190028548240662,mcs-2_ms-3_cse-0.1_csm-eom_lsi-700,578,[5175],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-eom_lsi-700.feather,2,3,0.1,eom
595,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5215925574302673,mcs-2_ms-3_cse-0.1_csm-leaf_lsi-700,647,[5498],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-leaf_lsi-700.feather,2,3,0.1,leaf
596,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47319087386131287,mcs-2_ms-3_cse-0.15_csm-eom_lsi-700,551,[4977],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-eom_lsi-700.feather,2,3,0.15,eom
597,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.472682386636734,mcs-2_ms-3_cse-0.15_csm-leaf_lsi-700,598,[5161],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-leaf_lsi-700.feather,2,3,0.15,leaf
598,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3454798758029938,mcs-2_ms-3_cse-0.2_csm-eom_lsi-700,489,[4668],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-eom_lsi-700.feather,2,3,0.2,eom
599,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.33918625116348267,mcs-2_ms-3_cse-0.2_csm-leaf_lsi-700,515,[4730],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-leaf_lsi-700.feather,2,3,0.2,leaf
600,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5202652215957642,mcs-2_ms-4_cse-0.0_csm-eom_lsi-700,491,[5533],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-eom_lsi-700.feather,2,4,0.0,eom
601,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5110041499137878,mcs-2_ms-4_cse-0.0_csm-leaf_lsi-700,590,[6289],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-leaf_lsi-700.feather,2,4,0.0,leaf
602,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5202652215957642,mcs-2_ms-4_cse-0.01_csm-eom_lsi-700,491,[5533],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-eom_lsi-700.feather,2,4,0.01,eom
603,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5245406031608582,mcs-2_ms-4_cse-0.01_csm-leaf_lsi-700,582,[6214],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-leaf_lsi-700.feather,2,4,0.01,leaf
604,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5202652215957642,mcs-2_ms-4_cse-0.05_csm-eom_lsi-700,491,[5533],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-eom_lsi-700.feather,2,4,0.05,eom
605,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5332955121994019,mcs-2_ms-4_cse-0.05_csm-leaf_lsi-700,575,[6116],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-leaf_lsi-700.feather,2,4,0.05,leaf
606,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5175037384033203,mcs-2_ms-4_cse-0.1_csm-eom_lsi-700,486,[5469],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-eom_lsi-700.feather,2,4,0.1,eom
607,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5337640643119812,mcs-2_ms-4_cse-0.1_csm-leaf_lsi-700,556,[5929],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-leaf_lsi-700.feather,2,4,0.1,leaf
608,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4950891137123108,mcs-2_ms-4_cse-0.15_csm-eom_lsi-700,478,[5401],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-eom_lsi-700.feather,2,4,0.15,eom
609,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.491232305765152,mcs-2_ms-4_cse-0.15_csm-leaf_lsi-700,521,[5601],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-leaf_lsi-700.feather,2,4,0.15,leaf
610,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.370564341545105,mcs-2_ms-4_cse-0.2_csm-eom_lsi-700,436,[5157],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-eom_lsi-700.feather,2,4,0.2,eom
611,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3621644973754883,mcs-2_ms-4_cse-0.2_csm-leaf_lsi-700,460,[5259],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-leaf_lsi-700.feather,2,4,0.2,leaf
612,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5457951426506042,mcs-2_ms-5_cse-0.0_csm-eom_lsi-700,425,[5863],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-eom_lsi-700.feather,2,5,0.0,eom
613,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49815571308135986,mcs-2_ms-5_cse-0.0_csm-leaf_lsi-700,500,[6551],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-leaf_lsi-700.feather,2,5,0.0,leaf
614,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5457951426506042,mcs-2_ms-5_cse-0.01_csm-eom_lsi-700,425,[5863],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-eom_lsi-700.feather,2,5,0.01,eom
615,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5236682295799255,mcs-2_ms-5_cse-0.01_csm-leaf_lsi-700,489,[6413],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-leaf_lsi-700.feather,2,5,0.01,leaf
616,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5457951426506042,mcs-2_ms-5_cse-0.05_csm-eom_lsi-700,425,[5863],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-eom_lsi-700.feather,2,5,0.05,eom
617,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5299171805381775,mcs-2_ms-5_cse-0.05_csm-leaf_lsi-700,485,[6316],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-leaf_lsi-700.feather,2,5,0.05,leaf
618,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5405609011650085,mcs-2_ms-5_cse-0.1_csm-eom_lsi-700,422,[5814],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-eom_lsi-700.feather,2,5,0.1,eom
619,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5269322991371155,mcs-2_ms-5_cse-0.1_csm-leaf_lsi-700,473,[6164],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-leaf_lsi-700.feather,2,5,0.1,leaf
620,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5046228766441345,mcs-2_ms-5_cse-0.15_csm-eom_lsi-700,414,[5737],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-eom_lsi-700.feather,2,5,0.15,eom
621,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4897398352622986,mcs-2_ms-5_cse-0.15_csm-leaf_lsi-700,450,[5958],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-leaf_lsi-700.feather,2,5,0.15,leaf
622,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3957016170024872,mcs-2_ms-5_cse-0.2_csm-eom_lsi-700,385,[5520],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-eom_lsi-700.feather,2,5,0.2,eom
623,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.389386922121048,mcs-2_ms-5_cse-0.2_csm-leaf_lsi-700,404,[5632],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-leaf_lsi-700.feather,2,5,0.2,leaf
624,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5050050616264343,mcs-3_ms-2_cse-0.0_csm-eom_lsi-700,621,[4768],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-eom_lsi-700.feather,3,2,0.0,eom
625,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5086458921432495,mcs-3_ms-2_cse-0.0_csm-leaf_lsi-700,656,[4997],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-leaf_lsi-700.feather,3,2,0.0,leaf
626,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.506669282913208,mcs-3_ms-2_cse-0.01_csm-eom_lsi-700,620,[4751],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-eom_lsi-700.feather,3,2,0.01,eom
627,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5143617987632751,mcs-3_ms-2_cse-0.01_csm-leaf_lsi-700,652,[4969],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-leaf_lsi-700.feather,3,2,0.01,leaf
628,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5069050788879395,mcs-3_ms-2_cse-0.05_csm-eom_lsi-700,617,[4725],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-eom_lsi-700.feather,3,2,0.05,eom
629,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5145608186721802,mcs-3_ms-2_cse-0.05_csm-leaf_lsi-700,649,[4943],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-leaf_lsi-700.feather,3,2,0.05,leaf
630,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4997645616531372,mcs-3_ms-2_cse-0.1_csm-eom_lsi-700,603,[4605],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-eom_lsi-700.feather,3,2,0.1,eom
631,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5094407796859741,mcs-3_ms-2_cse-0.1_csm-leaf_lsi-700,625,[4748],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-leaf_lsi-700.feather,3,2,0.1,leaf
632,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4416412115097046,mcs-3_ms-2_cse-0.15_csm-eom_lsi-700,567,[4402],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-eom_lsi-700.feather,3,2,0.15,eom
633,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4440098702907562,mcs-3_ms-2_cse-0.15_csm-leaf_lsi-700,574,[4450],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-leaf_lsi-700.feather,3,2,0.15,leaf
634,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3254496455192566,mcs-3_ms-2_cse-0.2_csm-eom_lsi-700,491,[4085],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-eom_lsi-700.feather,3,2,0.2,eom
635,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.32556700706481934,mcs-3_ms-2_cse-0.2_csm-leaf_lsi-700,492,[4091],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-leaf_lsi-700.feather,3,2,0.2,leaf
636,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5603407025337219,mcs-3_ms-3_cse-0.0_csm-eom_lsi-700,428,[5351],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-eom_lsi-700.feather,3,3,0.0,eom
637,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5682587027549744,mcs-3_ms-3_cse-0.0_csm-leaf_lsi-700,454,[5564],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-leaf_lsi-700.feather,3,3,0.0,leaf
638,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5629440546035767,mcs-3_ms-3_cse-0.01_csm-eom_lsi-700,427,[5323],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-eom_lsi-700.feather,3,3,0.01,eom
639,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5738771557807922,mcs-3_ms-3_cse-0.01_csm-leaf_lsi-700,450,[5520],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-leaf_lsi-700.feather,3,3,0.01,leaf
640,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5629440546035767,mcs-3_ms-3_cse-0.05_csm-eom_lsi-700,427,[5323],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-eom_lsi-700.feather,3,3,0.05,eom
641,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5738771557807922,mcs-3_ms-3_cse-0.05_csm-leaf_lsi-700,450,[5520],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-leaf_lsi-700.feather,3,3,0.05,leaf
642,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5563278794288635,mcs-3_ms-3_cse-0.1_csm-eom_lsi-700,420,[5217],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-eom_lsi-700.feather,3,3,0.1,eom
643,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5663982033729553,mcs-3_ms-3_cse-0.1_csm-leaf_lsi-700,439,[5371],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-leaf_lsi-700.feather,3,3,0.1,leaf
644,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.512269139289856,mcs-3_ms-3_cse-0.15_csm-eom_lsi-700,405,[5047],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-eom_lsi-700.feather,3,3,0.15,eom
645,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5154834389686584,mcs-3_ms-3_cse-0.15_csm-leaf_lsi-700,418,[5126],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-leaf_lsi-700.feather,3,3,0.15,leaf
646,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.40125876665115356,mcs-3_ms-3_cse-0.2_csm-eom_lsi-700,368,[4769],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-eom_lsi-700.feather,3,3,0.2,eom
647,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.40023893117904663,mcs-3_ms-3_cse-0.2_csm-leaf_lsi-700,376,[4803],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-leaf_lsi-700.feather,3,3,0.2,leaf
648,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5745881795883179,mcs-3_ms-4_cse-0.0_csm-eom_lsi-700,344,[5677],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-eom_lsi-700.feather,3,4,0.0,eom
649,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5825884342193604,mcs-3_ms-4_cse-0.0_csm-leaf_lsi-700,363,[5950],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-leaf_lsi-700.feather,3,4,0.0,leaf
650,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5745881795883179,mcs-3_ms-4_cse-0.01_csm-eom_lsi-700,344,[5677],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-eom_lsi-700.feather,3,4,0.01,eom
651,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5898951292037964,mcs-3_ms-4_cse-0.01_csm-leaf_lsi-700,361,[5918],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-leaf_lsi-700.feather,3,4,0.01,leaf
652,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5745881795883179,mcs-3_ms-4_cse-0.05_csm-eom_lsi-700,344,[5677],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-eom_lsi-700.feather,3,4,0.05,eom
653,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5898951292037964,mcs-3_ms-4_cse-0.05_csm-leaf_lsi-700,361,[5918],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-leaf_lsi-700.feather,3,4,0.05,leaf
654,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5726745128631592,mcs-3_ms-4_cse-0.1_csm-eom_lsi-700,340,[5616],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-eom_lsi-700.feather,3,4,0.1,eom
655,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5880283117294312,mcs-3_ms-4_cse-0.1_csm-leaf_lsi-700,353,[5818],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-leaf_lsi-700.feather,3,4,0.1,leaf
656,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.550391435623169,mcs-3_ms-4_cse-0.15_csm-eom_lsi-700,334,[5548],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-eom_lsi-700.feather,3,4,0.15,eom
657,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5539920330047607,mcs-3_ms-4_cse-0.15_csm-leaf_lsi-700,338,[5603],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-leaf_lsi-700.feather,3,4,0.15,leaf
658,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4380708336830139,mcs-3_ms-4_cse-0.2_csm-eom_lsi-700,304,[5297],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-eom_lsi-700.feather,3,4,0.2,eom
659,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.43889519572257996,mcs-3_ms-4_cse-0.2_csm-leaf_lsi-700,306,[5329],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-leaf_lsi-700.feather,3,4,0.2,leaf
660,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5979230403900146,mcs-3_ms-5_cse-0.0_csm-eom_lsi-700,316,[5970],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-eom_lsi-700.feather,3,5,0.0,eom
661,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6060090661048889,mcs-3_ms-5_cse-0.0_csm-leaf_lsi-700,331,[6187],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-leaf_lsi-700.feather,3,5,0.0,leaf
662,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5979230403900146,mcs-3_ms-5_cse-0.01_csm-eom_lsi-700,316,[5970],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-eom_lsi-700.feather,3,5,0.01,eom
663,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6098439693450928,mcs-3_ms-5_cse-0.01_csm-leaf_lsi-700,330,[6187],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-leaf_lsi-700.feather,3,5,0.01,leaf
664,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5979230403900146,mcs-3_ms-5_cse-0.05_csm-eom_lsi-700,316,[5970],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-eom_lsi-700.feather,3,5,0.05,eom
665,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6098439693450928,mcs-3_ms-5_cse-0.05_csm-leaf_lsi-700,330,[6187],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-leaf_lsi-700.feather,3,5,0.05,leaf
666,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5973476767539978,mcs-3_ms-5_cse-0.1_csm-eom_lsi-700,313,[5921],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-eom_lsi-700.feather,3,5,0.1,eom
667,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6083930730819702,mcs-3_ms-5_cse-0.1_csm-leaf_lsi-700,326,[6105],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-leaf_lsi-700.feather,3,5,0.1,leaf
668,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5689811110496521,mcs-3_ms-5_cse-0.15_csm-eom_lsi-700,307,[5851],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-eom_lsi-700.feather,3,5,0.15,eom
669,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5725841522216797,mcs-3_ms-5_cse-0.15_csm-leaf_lsi-700,312,[5926],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-leaf_lsi-700.feather,3,5,0.15,leaf
670,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47537773847579956,mcs-3_ms-5_cse-0.2_csm-eom_lsi-700,282,[5634],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-eom_lsi-700.feather,3,5,0.2,eom
671,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47769153118133545,mcs-3_ms-5_cse-0.2_csm-leaf_lsi-700,285,[5686],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-leaf_lsi-700.feather,3,5,0.2,leaf
672,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5194774866104126,mcs-4_ms-2_cse-0.0_csm-eom_lsi-700,476,[4900],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-eom_lsi-700.feather,4,2,0.0,eom
673,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5262560844421387,mcs-4_ms-2_cse-0.0_csm-leaf_lsi-700,496,[5061],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-leaf_lsi-700.feather,4,2,0.0,leaf
674,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5211048722267151,mcs-4_ms-2_cse-0.01_csm-eom_lsi-700,475,[4883],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-eom_lsi-700.feather,4,2,0.01,eom
675,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5279136896133423,mcs-4_ms-2_cse-0.01_csm-leaf_lsi-700,495,[5044],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-leaf_lsi-700.feather,4,2,0.01,leaf
676,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5210935473442078,mcs-4_ms-2_cse-0.05_csm-eom_lsi-700,474,[4876],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-eom_lsi-700.feather,4,2,0.05,eom
677,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5278922319412231,mcs-4_ms-2_cse-0.05_csm-leaf_lsi-700,494,[5037],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-leaf_lsi-700.feather,4,2,0.05,leaf
678,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5152159929275513,mcs-4_ms-2_cse-0.1_csm-eom_lsi-700,466,[4774],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-eom_lsi-700.feather,4,2,0.1,eom
679,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5216006636619568,mcs-4_ms-2_cse-0.1_csm-leaf_lsi-700,482,[4900],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-leaf_lsi-700.feather,4,2,0.1,leaf
680,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4644288122653961,mcs-4_ms-2_cse-0.15_csm-eom_lsi-700,444,[4585],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-eom_lsi-700.feather,4,2,0.15,eom
681,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4654421806335449,mcs-4_ms-2_cse-0.15_csm-leaf_lsi-700,446,[4607],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-leaf_lsi-700.feather,4,2,0.15,leaf
682,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.34243547916412354,mcs-4_ms-2_cse-0.2_csm-eom_lsi-700,392,[4236],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-eom_lsi-700.feather,4,2,0.2,eom
683,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3425470292568207,mcs-4_ms-2_cse-0.2_csm-leaf_lsi-700,393,[4239],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-leaf_lsi-700.feather,4,2,0.2,leaf
684,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5573852062225342,mcs-4_ms-3_cse-0.0_csm-eom_lsi-700,392,[5374],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-eom_lsi-700.feather,4,3,0.0,eom
685,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5651205778121948,mcs-4_ms-3_cse-0.0_csm-leaf_lsi-700,405,[5514],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-leaf_lsi-700.feather,4,3,0.0,leaf
686,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5610856413841248,mcs-4_ms-3_cse-0.01_csm-eom_lsi-700,391,[5346],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-eom_lsi-700.feather,4,3,0.01,eom
687,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5688891410827637,mcs-4_ms-3_cse-0.01_csm-leaf_lsi-700,404,[5486],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-leaf_lsi-700.feather,4,3,0.01,leaf
688,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5610856413841248,mcs-4_ms-3_cse-0.05_csm-eom_lsi-700,391,[5346],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-eom_lsi-700.feather,4,3,0.05,eom
689,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5688891410827637,mcs-4_ms-3_cse-0.05_csm-leaf_lsi-700,404,[5486],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-leaf_lsi-700.feather,4,3,0.05,leaf
690,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5551182627677917,mcs-4_ms-3_cse-0.1_csm-eom_lsi-700,384,[5240],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-eom_lsi-700.feather,4,3,0.1,eom
691,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5614908933639526,mcs-4_ms-3_cse-0.1_csm-leaf_lsi-700,394,[5358],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-leaf_lsi-700.feather,4,3,0.1,leaf
692,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5139623284339905,mcs-4_ms-3_cse-0.15_csm-eom_lsi-700,373,[5111],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-eom_lsi-700.feather,4,3,0.15,eom
693,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5161489844322205,mcs-4_ms-3_cse-0.15_csm-leaf_lsi-700,378,[5162],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-leaf_lsi-700.feather,4,3,0.15,leaf
694,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4089741110801697,mcs-4_ms-3_cse-0.2_csm-eom_lsi-700,337,[4836],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-eom_lsi-700.feather,4,3,0.2,eom
695,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4088255763053894,mcs-4_ms-3_cse-0.2_csm-leaf_lsi-700,339,[4845],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-leaf_lsi-700.feather,4,3,0.2,leaf
696,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5693026781082153,mcs-4_ms-4_cse-0.0_csm-eom_lsi-700,306,[5680],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-eom_lsi-700.feather,4,4,0.0,eom
697,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5780209898948669,mcs-4_ms-4_cse-0.0_csm-leaf_lsi-700,324,[5938],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-leaf_lsi-700.feather,4,4,0.0,leaf
698,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5693026781082153,mcs-4_ms-4_cse-0.01_csm-eom_lsi-700,306,[5680],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-eom_lsi-700.feather,4,4,0.01,eom
699,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5855067372322083,mcs-4_ms-4_cse-0.01_csm-leaf_lsi-700,322,[5906],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-leaf_lsi-700.feather,4,4,0.01,leaf
700,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5693026781082153,mcs-4_ms-4_cse-0.05_csm-eom_lsi-700,306,[5680],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-eom_lsi-700.feather,4,4,0.05,eom
701,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5855067372322083,mcs-4_ms-4_cse-0.05_csm-leaf_lsi-700,322,[5906],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-leaf_lsi-700.feather,4,4,0.05,leaf
702,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5681373476982117,mcs-4_ms-4_cse-0.1_csm-eom_lsi-700,303,[5632],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-eom_lsi-700.feather,4,4,0.1,eom
703,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5827150940895081,mcs-4_ms-4_cse-0.1_csm-leaf_lsi-700,317,[5810],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-leaf_lsi-700.feather,4,4,0.1,leaf
704,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5457724928855896,mcs-4_ms-4_cse-0.15_csm-eom_lsi-700,298,[5574],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-eom_lsi-700.feather,4,4,0.15,eom
705,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.549814760684967,mcs-4_ms-4_cse-0.15_csm-leaf_lsi-700,304,[5633],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-leaf_lsi-700.feather,4,4,0.15,leaf
706,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4360736608505249,mcs-4_ms-4_cse-0.2_csm-eom_lsi-700,272,[5340],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-eom_lsi-700.feather,4,4,0.2,eom
707,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.43719807267189026,mcs-4_ms-4_cse-0.2_csm-leaf_lsi-700,276,[5376],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-leaf_lsi-700.feather,4,4,0.2,leaf
708,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5988088250160217,mcs-4_ms-5_cse-0.0_csm-eom_lsi-700,288,[5943],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-eom_lsi-700.feather,4,5,0.0,eom
709,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6047472953796387,mcs-4_ms-5_cse-0.0_csm-leaf_lsi-700,298,[6077],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-leaf_lsi-700.feather,4,5,0.0,leaf
710,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5988088250160217,mcs-4_ms-5_cse-0.01_csm-eom_lsi-700,288,[5943],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-eom_lsi-700.feather,4,5,0.01,eom
711,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6084720492362976,mcs-4_ms-5_cse-0.01_csm-leaf_lsi-700,297,[6077],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-leaf_lsi-700.feather,4,5,0.01,leaf
712,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5988088250160217,mcs-4_ms-5_cse-0.05_csm-eom_lsi-700,288,[5943],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-eom_lsi-700.feather,4,5,0.05,eom
713,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6084720492362976,mcs-4_ms-5_cse-0.05_csm-leaf_lsi-700,297,[6077],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-leaf_lsi-700.feather,4,5,0.05,leaf
714,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5973557829856873,mcs-4_ms-5_cse-0.1_csm-eom_lsi-700,286,[5921],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-eom_lsi-700.feather,4,5,0.1,eom
715,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6068859696388245,mcs-4_ms-5_cse-0.1_csm-leaf_lsi-700,295,[6055],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-leaf_lsi-700.feather,4,5,0.1,leaf
716,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5730434060096741,mcs-4_ms-5_cse-0.15_csm-eom_lsi-700,281,[5860],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-eom_lsi-700.feather,4,5,0.15,eom
717,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5770087242126465,mcs-4_ms-5_cse-0.15_csm-leaf_lsi-700,286,[5922],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-leaf_lsi-700.feather,4,5,0.15,leaf
718,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4891763925552368,mcs-4_ms-5_cse-0.2_csm-eom_lsi-700,261,[5655],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-eom_lsi-700.feather,4,5,0.2,eom
719,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49132609367370605,mcs-4_ms-5_cse-0.2_csm-leaf_lsi-700,263,[5694],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-leaf_lsi-700.feather,4,5,0.2,leaf
720,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5151126384735107,mcs-5_ms-2_cse-0.0_csm-eom_lsi-700,400,[4976],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-eom_lsi-700.feather,5,2,0.0,eom
721,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5252681374549866,mcs-5_ms-2_cse-0.0_csm-leaf_lsi-700,414,[5132],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-leaf_lsi-700.feather,5,2,0.0,leaf
722,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5177885293960571,mcs-5_ms-2_cse-0.01_csm-eom_lsi-700,399,[4948],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-eom_lsi-700.feather,5,2,0.01,eom
723,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5279716849327087,mcs-5_ms-2_cse-0.01_csm-leaf_lsi-700,413,[5104],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-leaf_lsi-700.feather,5,2,0.01,leaf
724,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5177885293960571,mcs-5_ms-2_cse-0.05_csm-eom_lsi-700,399,[4948],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-eom_lsi-700.feather,5,2,0.05,eom
725,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5279716849327087,mcs-5_ms-2_cse-0.05_csm-leaf_lsi-700,413,[5104],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-leaf_lsi-700.feather,5,2,0.05,leaf
726,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5140371322631836,mcs-5_ms-2_cse-0.1_csm-eom_lsi-700,391,[4846],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-eom_lsi-700.feather,5,2,0.1,eom
727,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.522508978843689,mcs-5_ms-2_cse-0.1_csm-leaf_lsi-700,403,[4950],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-leaf_lsi-700.feather,5,2,0.1,leaf
728,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.46996065974235535,mcs-5_ms-2_cse-0.15_csm-eom_lsi-700,377,[4708],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-eom_lsi-700.feather,5,2,0.15,eom
729,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4737350642681122,mcs-5_ms-2_cse-0.15_csm-leaf_lsi-700,381,[4745],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-leaf_lsi-700.feather,5,2,0.15,leaf
730,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.34833627939224243,mcs-5_ms-2_cse-0.2_csm-eom_lsi-700,337,[4394],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-eom_lsi-700.feather,5,2,0.2,eom
731,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.34900522232055664,mcs-5_ms-2_cse-0.2_csm-leaf_lsi-700,338,[4395],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-leaf_lsi-700.feather,5,2,0.2,leaf
732,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5512244701385498,mcs-5_ms-3_cse-0.0_csm-eom_lsi-700,345,[5351],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-eom_lsi-700.feather,5,3,0.0,eom
733,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5626506209373474,mcs-5_ms-3_cse-0.0_csm-leaf_lsi-700,362,[5602],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-leaf_lsi-700.feather,5,3,0.0,leaf
734,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5512244701385498,mcs-5_ms-3_cse-0.01_csm-eom_lsi-700,345,[5351],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-eom_lsi-700.feather,5,3,0.01,eom
735,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5666342377662659,mcs-5_ms-3_cse-0.01_csm-leaf_lsi-700,361,[5574],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-leaf_lsi-700.feather,5,3,0.01,leaf
736,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5512244701385498,mcs-5_ms-3_cse-0.05_csm-eom_lsi-700,345,[5351],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-eom_lsi-700.feather,5,3,0.05,eom
737,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5666342377662659,mcs-5_ms-3_cse-0.05_csm-leaf_lsi-700,361,[5574],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-leaf_lsi-700.feather,5,3,0.05,leaf
738,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5492942333221436,mcs-5_ms-3_cse-0.1_csm-eom_lsi-700,340,[5264],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-eom_lsi-700.feather,5,3,0.1,eom
739,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5579224228858948,mcs-5_ms-3_cse-0.1_csm-leaf_lsi-700,352,[5390],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-leaf_lsi-700.feather,5,3,0.1,leaf
740,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5112549662590027,mcs-5_ms-3_cse-0.15_csm-eom_lsi-700,334,[5192],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-eom_lsi-700.feather,5,3,0.15,eom
741,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5160481929779053,mcs-5_ms-3_cse-0.15_csm-leaf_lsi-700,340,[5257],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-leaf_lsi-700.feather,5,3,0.15,leaf
742,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4124160408973694,mcs-5_ms-3_cse-0.2_csm-eom_lsi-700,302,[4953],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-eom_lsi-700.feather,5,3,0.2,eom
743,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4120352864265442,mcs-5_ms-3_cse-0.2_csm-leaf_lsi-700,303,[4960],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-leaf_lsi-700.feather,5,3,0.2,leaf
744,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.563776433467865,mcs-5_ms-4_cse-0.0_csm-eom_lsi-700,289,[5666],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-eom_lsi-700.feather,5,4,0.0,eom
745,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5772376656532288,mcs-5_ms-4_cse-0.0_csm-leaf_lsi-700,301,[5825],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-leaf_lsi-700.feather,5,4,0.0,leaf
746,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.563776433467865,mcs-5_ms-4_cse-0.01_csm-eom_lsi-700,289,[5666],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-eom_lsi-700.feather,5,4,0.01,eom
747,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5772376656532288,mcs-5_ms-4_cse-0.01_csm-leaf_lsi-700,301,[5825],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-leaf_lsi-700.feather,5,4,0.01,leaf
748,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.563776433467865,mcs-5_ms-4_cse-0.05_csm-eom_lsi-700,289,[5666],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-eom_lsi-700.feather,5,4,0.05,eom
749,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5772376656532288,mcs-5_ms-4_cse-0.05_csm-leaf_lsi-700,301,[5825],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-leaf_lsi-700.feather,5,4,0.05,leaf
750,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5637798309326172,mcs-5_ms-4_cse-0.1_csm-eom_lsi-700,286,[5618],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-eom_lsi-700.feather,5,4,0.1,eom
751,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5764170289039612,mcs-5_ms-4_cse-0.1_csm-leaf_lsi-700,297,[5764],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-leaf_lsi-700.feather,5,4,0.1,leaf
752,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5448933839797974,mcs-5_ms-4_cse-0.15_csm-eom_lsi-700,284,[5573],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-eom_lsi-700.feather,5,4,0.15,eom
753,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5482233762741089,mcs-5_ms-4_cse-0.15_csm-leaf_lsi-700,289,[5631],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-leaf_lsi-700.feather,5,4,0.15,leaf
754,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.44205382466316223,mcs-5_ms-4_cse-0.2_csm-eom_lsi-700,259,[5337],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-eom_lsi-700.feather,5,4,0.2,eom
755,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4425067901611328,mcs-5_ms-4_cse-0.2_csm-leaf_lsi-700,262,[5372],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-leaf_lsi-700.feather,5,4,0.2,leaf
756,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5981701612472534,mcs-5_ms-5_cse-0.0_csm-eom_lsi-700,260,[6001],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-eom_lsi-700.feather,5,5,0.0,eom
757,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6091014742851257,mcs-5_ms-5_cse-0.0_csm-leaf_lsi-700,270,[6157],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-leaf_lsi-700.feather,5,5,0.0,leaf
758,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5981701612472534,mcs-5_ms-5_cse-0.01_csm-eom_lsi-700,260,[6001],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-eom_lsi-700.feather,5,5,0.01,eom
759,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.612905740737915,mcs-5_ms-5_cse-0.01_csm-leaf_lsi-700,269,[6157],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-leaf_lsi-700.feather,5,5,0.01,leaf
760,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5981701612472534,mcs-5_ms-5_cse-0.05_csm-eom_lsi-700,260,[6001],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-eom_lsi-700.feather,5,5,0.05,eom
761,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.612905740737915,mcs-5_ms-5_cse-0.05_csm-leaf_lsi-700,269,[6157],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-leaf_lsi-700.feather,5,5,0.05,leaf
762,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5967296361923218,mcs-5_ms-5_cse-0.1_csm-eom_lsi-700,258,[5979],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-eom_lsi-700.feather,5,5,0.1,eom
763,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6112987995147705,mcs-5_ms-5_cse-0.1_csm-leaf_lsi-700,267,[6135],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-leaf_lsi-700.feather,5,5,0.1,leaf
764,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.577521026134491,mcs-5_ms-5_cse-0.15_csm-eom_lsi-700,255,[5930],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-eom_lsi-700.feather,5,5,0.15,eom
765,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5818595290184021,mcs-5_ms-5_cse-0.15_csm-leaf_lsi-700,259,[5991],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-leaf_lsi-700.feather,5,5,0.15,leaf
766,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4929203391075134,mcs-5_ms-5_cse-0.2_csm-eom_lsi-700,237,[5739],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-eom_lsi-700.feather,5,5,0.2,eom
767,700,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4947021007537842,mcs-5_ms-5_cse-0.2_csm-leaf_lsi-700,239,[5778],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-leaf_lsi-700.feather,5,5,0.2,leaf
768,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.45351460576057434,mcs-2_ms-2_cse-0.0_csm-eom_lsi-300,636,[5389],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-eom_lsi-300.feather,2,2,0.0,eom
769,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.45142072439193726,mcs-2_ms-2_cse-0.0_csm-leaf_lsi-300,738,[6126],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-leaf_lsi-300.feather,2,2,0.0,leaf
770,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.45705798268318176,mcs-2_ms-2_cse-0.01_csm-eom_lsi-300,632,[5352],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-eom_lsi-300.feather,2,2,0.01,eom
771,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4571218490600586,mcs-2_ms-2_cse-0.01_csm-leaf_lsi-300,732,[6061],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-leaf_lsi-300.feather,2,2,0.01,leaf
772,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4630553126335144,mcs-2_ms-2_cse-0.05_csm-eom_lsi-300,620,[5234],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-eom_lsi-300.feather,2,2,0.05,eom
773,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.46699073910713196,mcs-2_ms-2_cse-0.05_csm-leaf_lsi-300,678,[5596],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-leaf_lsi-300.feather,2,2,0.05,leaf
774,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3969031572341919,mcs-2_ms-2_cse-0.1_csm-eom_lsi-300,575,[4964],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-eom_lsi-300.feather,2,2,0.1,eom
775,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3999583125114441,mcs-2_ms-2_cse-0.1_csm-leaf_lsi-300,601,[5070],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-leaf_lsi-300.feather,2,2,0.1,leaf
776,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.15190352499485016,mcs-2_ms-2_cse-0.15_csm-eom_lsi-300,466,[4377],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-eom_lsi-300.feather,2,2,0.15,eom
777,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.14989982545375824,mcs-2_ms-2_cse-0.15_csm-leaf_lsi-300,477,[4413],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-leaf_lsi-300.feather,2,2,0.15,leaf
778,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.017810411751270294,mcs-2_ms-2_cse-0.2_csm-eom_lsi-300,317,[3578],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-eom_lsi-300.feather,2,2,0.2,eom
779,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,-0.018767094239592552,mcs-2_ms-2_cse-0.2_csm-leaf_lsi-300,321,[3581],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-leaf_lsi-300.feather,2,2,0.2,leaf
780,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5300626158714294,mcs-2_ms-3_cse-0.0_csm-eom_lsi-300,450,[5842],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-eom_lsi-300.feather,2,3,0.0,eom
781,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4717118740081787,mcs-2_ms-3_cse-0.0_csm-leaf_lsi-300,553,[6777],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-leaf_lsi-300.feather,2,3,0.0,leaf
782,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5307447910308838,mcs-2_ms-3_cse-0.01_csm-eom_lsi-300,449,[5811],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-eom_lsi-300.feather,2,3,0.01,eom
783,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49132469296455383,mcs-2_ms-3_cse-0.01_csm-leaf_lsi-300,540,[6615],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-leaf_lsi-300.feather,2,3,0.01,leaf
784,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5208916664123535,mcs-2_ms-3_cse-0.05_csm-eom_lsi-300,444,[5769],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-eom_lsi-300.feather,2,3,0.05,eom
785,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5163770914077759,mcs-2_ms-3_cse-0.05_csm-leaf_lsi-300,493,[6117],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-leaf_lsi-300.feather,2,3,0.05,leaf
786,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.44291412830352783,mcs-2_ms-3_cse-0.1_csm-eom_lsi-300,413,[5538],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-eom_lsi-300.feather,2,3,0.1,eom
787,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.44015857577323914,mcs-2_ms-3_cse-0.1_csm-leaf_lsi-300,437,[5663],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-leaf_lsi-300.feather,2,3,0.1,leaf
788,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.21746613085269928,mcs-2_ms-3_cse-0.15_csm-eom_lsi-300,343,[5012],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-eom_lsi-300.feather,2,3,0.15,eom
789,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2132735252380371,mcs-2_ms-3_cse-0.15_csm-leaf_lsi-300,351,[5029],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-leaf_lsi-300.feather,2,3,0.15,leaf
790,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.027726082131266594,mcs-2_ms-3_cse-0.2_csm-eom_lsi-300,250,[4243],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-eom_lsi-300.feather,2,3,0.2,eom
791,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0262081827968359,mcs-2_ms-3_cse-0.2_csm-leaf_lsi-300,253,[4248],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-leaf_lsi-300.feather,2,3,0.2,leaf
792,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5539599061012268,mcs-2_ms-4_cse-0.0_csm-eom_lsi-300,373,[6093],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-eom_lsi-300.feather,2,4,0.0,eom
793,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5276696085929871,mcs-2_ms-4_cse-0.0_csm-leaf_lsi-300,448,[6925],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-leaf_lsi-300.feather,2,4,0.0,leaf
794,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5539599061012268,mcs-2_ms-4_cse-0.01_csm-eom_lsi-300,373,[6093],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-eom_lsi-300.feather,2,4,0.01,eom
795,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5321893692016602,mcs-2_ms-4_cse-0.01_csm-leaf_lsi-300,442,[6873],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-leaf_lsi-300.feather,2,4,0.01,leaf
796,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5486549735069275,mcs-2_ms-4_cse-0.05_csm-eom_lsi-300,371,[6049],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-eom_lsi-300.feather,2,4,0.05,eom
797,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5471152663230896,mcs-2_ms-4_cse-0.05_csm-leaf_lsi-300,414,[6483],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-leaf_lsi-300.feather,2,4,0.05,leaf
798,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4973868131637573,mcs-2_ms-4_cse-0.1_csm-eom_lsi-300,352,[5892],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-eom_lsi-300.feather,2,4,0.1,eom
799,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4920686185359955,mcs-2_ms-4_cse-0.1_csm-leaf_lsi-300,374,[6041],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-leaf_lsi-300.feather,2,4,0.1,leaf
800,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2878924012184143,mcs-2_ms-4_cse-0.15_csm-eom_lsi-300,292,[5429],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-eom_lsi-300.feather,2,4,0.15,eom
801,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.282441645860672,mcs-2_ms-4_cse-0.15_csm-leaf_lsi-300,300,[5486],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-leaf_lsi-300.feather,2,4,0.15,leaf
802,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0953754410147667,mcs-2_ms-4_cse-0.2_csm-eom_lsi-300,223,[4718],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-eom_lsi-300.feather,2,4,0.2,eom
803,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.09435755759477615,mcs-2_ms-4_cse-0.2_csm-leaf_lsi-300,225,[4720],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-leaf_lsi-300.feather,2,4,0.2,leaf
804,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5651235580444336,mcs-2_ms-5_cse-0.0_csm-eom_lsi-300,299,[6294],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-eom_lsi-300.feather,2,5,0.0,eom
805,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5057505965232849,mcs-2_ms-5_cse-0.0_csm-leaf_lsi-300,369,[7178],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-leaf_lsi-300.feather,2,5,0.0,leaf
806,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5651235580444336,mcs-2_ms-5_cse-0.01_csm-eom_lsi-300,299,[6294],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-eom_lsi-300.feather,2,5,0.01,eom
807,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5276287198066711,mcs-2_ms-5_cse-0.01_csm-leaf_lsi-300,363,[7074],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-leaf_lsi-300.feather,2,5,0.01,leaf
808,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.572151780128479,mcs-2_ms-5_cse-0.05_csm-eom_lsi-300,298,[6246],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-eom_lsi-300.feather,2,5,0.05,eom
809,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5631277561187744,mcs-2_ms-5_cse-0.05_csm-leaf_lsi-300,346,[6783],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-leaf_lsi-300.feather,2,5,0.05,leaf
810,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5396034121513367,mcs-2_ms-5_cse-0.1_csm-eom_lsi-300,288,[6157],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-eom_lsi-300.feather,2,5,0.1,eom
811,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5357266664505005,mcs-2_ms-5_cse-0.1_csm-leaf_lsi-300,312,[6327],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.1_csm-leaf_lsi-300.feather,2,5,0.1,leaf
812,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3457694351673126,mcs-2_ms-5_cse-0.15_csm-eom_lsi-300,249,[5773],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-eom_lsi-300.feather,2,5,0.15,eom
813,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.34236860275268555,mcs-2_ms-5_cse-0.15_csm-leaf_lsi-300,257,[5825],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.15_csm-leaf_lsi-300.feather,2,5,0.15,leaf
814,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.12244336307048798,mcs-2_ms-5_cse-0.2_csm-eom_lsi-300,196,[5050],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-eom_lsi-300.feather,2,5,0.2,eom
815,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.11898063123226166,mcs-2_ms-5_cse-0.2_csm-leaf_lsi-300,200,[5063],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.2_csm-leaf_lsi-300.feather,2,5,0.2,leaf
816,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5116595029830933,mcs-3_ms-2_cse-0.0_csm-eom_lsi-300,456,[5498],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-eom_lsi-300.feather,3,2,0.0,eom
817,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5076808333396912,mcs-3_ms-2_cse-0.0_csm-leaf_lsi-300,489,[5929],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.0_csm-leaf_lsi-300.feather,3,2,0.0,leaf
818,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5126814246177673,mcs-3_ms-2_cse-0.01_csm-eom_lsi-300,455,[5492],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-eom_lsi-300.feather,3,2,0.01,eom
819,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5088193416595459,mcs-3_ms-2_cse-0.01_csm-leaf_lsi-300,488,[5923],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.01_csm-leaf_lsi-300.feather,3,2,0.01,leaf
820,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5128865242004395,mcs-3_ms-2_cse-0.05_csm-eom_lsi-300,448,[5415],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-eom_lsi-300.feather,3,2,0.05,eom
821,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5147401690483093,mcs-3_ms-2_cse-0.05_csm-leaf_lsi-300,464,[5573],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.05_csm-leaf_lsi-300.feather,3,2,0.05,leaf
822,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.44502121210098267,mcs-3_ms-2_cse-0.1_csm-eom_lsi-300,414,[5153],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-eom_lsi-300.feather,3,2,0.1,eom
823,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.44622600078582764,mcs-3_ms-2_cse-0.1_csm-leaf_lsi-300,420,[5184],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.1_csm-leaf_lsi-300.feather,3,2,0.1,leaf
824,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2019132673740387,mcs-3_ms-2_cse-0.15_csm-eom_lsi-300,335,[4582],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-eom_lsi-300.feather,3,2,0.15,eom
825,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.20099829137325287,mcs-3_ms-2_cse-0.15_csm-leaf_lsi-300,337,[4585],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.15_csm-leaf_lsi-300.feather,3,2,0.15,leaf
826,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.01654701679944992,mcs-3_ms-2_cse-0.2_csm-eom_lsi-300,230,[3735],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-eom_lsi-300.feather,3,2,0.2,eom
827,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.016129881143569946,mcs-3_ms-2_cse-0.2_csm-leaf_lsi-300,231,[3735],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-2_cse-0.2_csm-leaf_lsi-300.feather,3,2,0.2,leaf
828,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5851762294769287,mcs-3_ms-3_cse-0.0_csm-eom_lsi-300,311,[5904],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-eom_lsi-300.feather,3,3,0.0,eom
829,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5782238841056824,mcs-3_ms-3_cse-0.0_csm-leaf_lsi-300,332,[6211],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.0_csm-leaf_lsi-300.feather,3,3,0.0,leaf
830,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5851762294769287,mcs-3_ms-3_cse-0.01_csm-eom_lsi-300,311,[5904],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-eom_lsi-300.feather,3,3,0.01,eom
831,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5853328704833984,mcs-3_ms-3_cse-0.01_csm-leaf_lsi-300,330,[6189],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.01_csm-leaf_lsi-300.feather,3,3,0.01,leaf
832,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5849555730819702,mcs-3_ms-3_cse-0.05_csm-eom_lsi-300,310,[5868],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-eom_lsi-300.feather,3,3,0.05,eom
833,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5905901789665222,mcs-3_ms-3_cse-0.05_csm-leaf_lsi-300,323,[5990],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.05_csm-leaf_lsi-300.feather,3,3,0.05,leaf
834,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5135620832443237,mcs-3_ms-3_cse-0.1_csm-eom_lsi-300,295,[5668],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-eom_lsi-300.feather,3,3,0.1,eom
835,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5175414085388184,mcs-3_ms-3_cse-0.1_csm-leaf_lsi-300,302,[5731],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.1_csm-leaf_lsi-300.feather,3,3,0.1,leaf
836,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2892727255821228,mcs-3_ms-3_cse-0.15_csm-eom_lsi-300,240,[5163],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-eom_lsi-300.feather,3,3,0.15,eom
837,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2883099317550659,mcs-3_ms-3_cse-0.15_csm-leaf_lsi-300,244,[5181],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.15_csm-leaf_lsi-300.feather,3,3,0.15,leaf
838,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.09267257899045944,mcs-3_ms-3_cse-0.2_csm-eom_lsi-300,177,[4368],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-eom_lsi-300.feather,3,3,0.2,eom
839,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.09267257899045944,mcs-3_ms-3_cse-0.2_csm-leaf_lsi-300,177,[4368],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-3_cse-0.2_csm-leaf_lsi-300.feather,3,3,0.2,leaf
840,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6164017915725708,mcs-3_ms-4_cse-0.0_csm-eom_lsi-300,262,[6153],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-eom_lsi-300.feather,3,4,0.0,eom
841,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6097663044929504,mcs-3_ms-4_cse-0.0_csm-leaf_lsi-300,277,[6393],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.0_csm-leaf_lsi-300.feather,3,4,0.0,leaf
842,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6164017915725708,mcs-3_ms-4_cse-0.01_csm-eom_lsi-300,262,[6153],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-eom_lsi-300.feather,3,4,0.01,eom
843,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6126888990402222,mcs-3_ms-4_cse-0.01_csm-leaf_lsi-300,276,[6393],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.01_csm-leaf_lsi-300.feather,3,4,0.01,leaf
844,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6143593192100525,mcs-3_ms-4_cse-0.05_csm-eom_lsi-300,261,[6111],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-eom_lsi-300.feather,3,4,0.05,eom
845,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6177019476890564,mcs-3_ms-4_cse-0.05_csm-leaf_lsi-300,270,[6234],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.05_csm-leaf_lsi-300.feather,3,4,0.05,leaf
846,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5630959272384644,mcs-3_ms-4_cse-0.1_csm-eom_lsi-300,250,[5970],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-eom_lsi-300.feather,3,4,0.1,eom
847,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5643558502197266,mcs-3_ms-4_cse-0.1_csm-leaf_lsi-300,254,[6004],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.1_csm-leaf_lsi-300.feather,3,4,0.1,leaf
848,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3569440245628357,mcs-3_ms-4_cse-0.15_csm-eom_lsi-300,212,[5530],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-eom_lsi-300.feather,3,4,0.15,eom
849,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.35662099719047546,mcs-3_ms-4_cse-0.15_csm-leaf_lsi-300,214,[5545],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.15_csm-leaf_lsi-300.feather,3,4,0.15,leaf
850,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.1675957441329956,mcs-3_ms-4_cse-0.2_csm-eom_lsi-300,163,[4805],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-eom_lsi-300.feather,3,4,0.2,eom
851,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.1670185625553131,mcs-3_ms-4_cse-0.2_csm-leaf_lsi-300,164,[4810],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-4_cse-0.2_csm-leaf_lsi-300.feather,3,4,0.2,leaf
852,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6377898454666138,mcs-3_ms-5_cse-0.0_csm-eom_lsi-300,217,[6277],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-eom_lsi-300.feather,3,5,0.0,eom
853,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6473121643066406,mcs-3_ms-5_cse-0.0_csm-leaf_lsi-300,235,[6574],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.0_csm-leaf_lsi-300.feather,3,5,0.0,leaf
854,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6377898454666138,mcs-3_ms-5_cse-0.01_csm-eom_lsi-300,217,[6277],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-eom_lsi-300.feather,3,5,0.01,eom
855,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.651595950126648,mcs-3_ms-5_cse-0.01_csm-leaf_lsi-300,233,[6574],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.01_csm-leaf_lsi-300.feather,3,5,0.01,leaf
856,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6377898454666138,mcs-3_ms-5_cse-0.05_csm-eom_lsi-300,217,[6277],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-eom_lsi-300.feather,3,5,0.05,eom
857,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.651595950126648,mcs-3_ms-5_cse-0.05_csm-leaf_lsi-300,233,[6574],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.05_csm-leaf_lsi-300.feather,3,5,0.05,leaf
858,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6198455691337585,mcs-3_ms-5_cse-0.1_csm-eom_lsi-300,211,[6197],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-eom_lsi-300.feather,3,5,0.1,eom
859,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6292489767074585,mcs-3_ms-5_cse-0.1_csm-leaf_lsi-300,219,[6301],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.1_csm-leaf_lsi-300.feather,3,5,0.1,leaf
860,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.41960158944129944,mcs-3_ms-5_cse-0.15_csm-eom_lsi-300,185,[5849],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-eom_lsi-300.feather,3,5,0.15,eom
861,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.42023521661758423,mcs-3_ms-5_cse-0.15_csm-leaf_lsi-300,189,[5889],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.15_csm-leaf_lsi-300.feather,3,5,0.15,leaf
862,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2218061238527298,mcs-3_ms-5_cse-0.2_csm-eom_lsi-300,144,[5134],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-eom_lsi-300.feather,3,5,0.2,eom
863,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.22085736691951752,mcs-3_ms-5_cse-0.2_csm-leaf_lsi-300,145,[5141],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-3_ms-5_cse-0.2_csm-leaf_lsi-300.feather,3,5,0.2,leaf
864,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5318624973297119,mcs-4_ms-2_cse-0.0_csm-eom_lsi-300,341,[5580],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-eom_lsi-300.feather,4,2,0.0,eom
865,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.520517885684967,mcs-4_ms-2_cse-0.0_csm-leaf_lsi-300,358,[5845],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.0_csm-leaf_lsi-300.feather,4,2,0.0,leaf
866,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5318624973297119,mcs-4_ms-2_cse-0.01_csm-eom_lsi-300,341,[5580],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-eom_lsi-300.feather,4,2,0.01,eom
867,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.520517885684967,mcs-4_ms-2_cse-0.01_csm-leaf_lsi-300,358,[5845],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.01_csm-leaf_lsi-300.feather,4,2,0.01,leaf
868,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5346973538398743,mcs-4_ms-2_cse-0.05_csm-eom_lsi-300,336,[5524],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-eom_lsi-300.feather,4,2,0.05,eom
869,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5348833203315735,mcs-4_ms-2_cse-0.05_csm-leaf_lsi-300,344,[5594],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.05_csm-leaf_lsi-300.feather,4,2,0.05,leaf
870,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4724734127521515,mcs-4_ms-2_cse-0.1_csm-eom_lsi-300,314,[5299],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-eom_lsi-300.feather,4,2,0.1,eom
871,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.472731351852417,mcs-4_ms-2_cse-0.1_csm-leaf_lsi-300,317,[5316],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.1_csm-leaf_lsi-300.feather,4,2,0.1,leaf
872,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.23276323080062866,mcs-4_ms-2_cse-0.15_csm-eom_lsi-300,252,[4739],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-eom_lsi-300.feather,4,2,0.15,eom
873,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.23165912926197052,mcs-4_ms-2_cse-0.15_csm-leaf_lsi-300,253,[4745],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.15_csm-leaf_lsi-300.feather,4,2,0.15,leaf
874,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.04859832301735878,mcs-4_ms-2_cse-0.2_csm-eom_lsi-300,179,[3858],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-eom_lsi-300.feather,4,2,0.2,eom
875,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.04859832301735878,mcs-4_ms-2_cse-0.2_csm-leaf_lsi-300,179,[3858],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-2_cse-0.2_csm-leaf_lsi-300.feather,4,2,0.2,leaf
876,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5921295285224915,mcs-4_ms-3_cse-0.0_csm-eom_lsi-300,281,[5964],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-eom_lsi-300.feather,4,3,0.0,eom
877,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.586997926235199,mcs-4_ms-3_cse-0.0_csm-leaf_lsi-300,293,[6102],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.0_csm-leaf_lsi-300.feather,4,3,0.0,leaf
878,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5921295285224915,mcs-4_ms-3_cse-0.01_csm-eom_lsi-300,281,[5964],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-eom_lsi-300.feather,4,3,0.01,eom
879,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.586997926235199,mcs-4_ms-3_cse-0.01_csm-leaf_lsi-300,293,[6102],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.01_csm-leaf_lsi-300.feather,4,3,0.01,leaf
880,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5918564200401306,mcs-4_ms-3_cse-0.05_csm-eom_lsi-300,280,[5928],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-eom_lsi-300.feather,4,3,0.05,eom
881,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5950949192047119,mcs-4_ms-3_cse-0.05_csm-leaf_lsi-300,289,[5994],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.05_csm-leaf_lsi-300.feather,4,3,0.05,leaf
882,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5237021446228027,mcs-4_ms-3_cse-0.1_csm-eom_lsi-300,265,[5728],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-eom_lsi-300.feather,4,3,0.1,eom
883,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5258638262748718,mcs-4_ms-3_cse-0.1_csm-leaf_lsi-300,272,[5776],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.1_csm-leaf_lsi-300.feather,4,3,0.1,leaf
884,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.30764907598495483,mcs-4_ms-3_cse-0.15_csm-eom_lsi-300,216,[5207],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-eom_lsi-300.feather,4,3,0.15,eom
885,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.30667999386787415,mcs-4_ms-3_cse-0.15_csm-leaf_lsi-300,219,[5220],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.15_csm-leaf_lsi-300.feather,4,3,0.15,leaf
886,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.11264273524284363,mcs-4_ms-3_cse-0.2_csm-eom_lsi-300,162,[4404],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-eom_lsi-300.feather,4,3,0.2,eom
887,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.11264273524284363,mcs-4_ms-3_cse-0.2_csm-leaf_lsi-300,162,[4404],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-3_cse-0.2_csm-leaf_lsi-300.feather,4,3,0.2,leaf
888,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6129987239837646,mcs-4_ms-4_cse-0.0_csm-eom_lsi-300,230,[6108],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-eom_lsi-300.feather,4,4,0.0,eom
889,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.624298095703125,mcs-4_ms-4_cse-0.0_csm-leaf_lsi-300,245,[6342],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.0_csm-leaf_lsi-300.feather,4,4,0.0,leaf
890,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6129987239837646,mcs-4_ms-4_cse-0.01_csm-eom_lsi-300,230,[6108],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-eom_lsi-300.feather,4,4,0.01,eom
891,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6271808743476868,mcs-4_ms-4_cse-0.01_csm-leaf_lsi-300,244,[6342],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.01_csm-leaf_lsi-300.feather,4,4,0.01,leaf
892,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6113250255584717,mcs-4_ms-4_cse-0.05_csm-eom_lsi-300,229,[6066],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-eom_lsi-300.feather,4,4,0.05,eom
893,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6256327629089355,mcs-4_ms-4_cse-0.05_csm-leaf_lsi-300,242,[6269],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.05_csm-leaf_lsi-300.feather,4,4,0.05,leaf
894,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5639320611953735,mcs-4_ms-4_cse-0.1_csm-eom_lsi-300,221,[5961],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-eom_lsi-300.feather,4,4,0.1,eom
895,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5693369507789612,mcs-4_ms-4_cse-0.1_csm-leaf_lsi-300,227,[6007],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.1_csm-leaf_lsi-300.feather,4,4,0.1,leaf
896,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.37526944279670715,mcs-4_ms-4_cse-0.15_csm-eom_lsi-300,191,[5584],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-eom_lsi-300.feather,4,4,0.15,eom
897,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3755444288253784,mcs-4_ms-4_cse-0.15_csm-leaf_lsi-300,192,[5589],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.15_csm-leaf_lsi-300.feather,4,4,0.15,leaf
898,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.1808324158191681,mcs-4_ms-4_cse-0.2_csm-eom_lsi-300,148,[4841],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-eom_lsi-300.feather,4,4,0.2,eom
899,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.1802155077457428,mcs-4_ms-4_cse-0.2_csm-leaf_lsi-300,149,[4846],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-4_cse-0.2_csm-leaf_lsi-300.feather,4,4,0.2,leaf
900,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.645719587802887,mcs-4_ms-5_cse-0.0_csm-eom_lsi-300,201,[6310],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-eom_lsi-300.feather,4,5,0.0,eom
901,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6577430963516235,mcs-4_ms-5_cse-0.0_csm-leaf_lsi-300,212,[6517],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.0_csm-leaf_lsi-300.feather,4,5,0.0,leaf
902,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.645719587802887,mcs-4_ms-5_cse-0.01_csm-eom_lsi-300,201,[6310],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-eom_lsi-300.feather,4,5,0.01,eom
903,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6577430963516235,mcs-4_ms-5_cse-0.01_csm-leaf_lsi-300,212,[6517],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.01_csm-leaf_lsi-300.feather,4,5,0.01,leaf
904,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.645719587802887,mcs-4_ms-5_cse-0.05_csm-eom_lsi-300,201,[6310],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-eom_lsi-300.feather,4,5,0.05,eom
905,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6577430963516235,mcs-4_ms-5_cse-0.05_csm-leaf_lsi-300,212,[6517],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.05_csm-leaf_lsi-300.feather,4,5,0.05,leaf
906,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6323420405387878,mcs-4_ms-5_cse-0.1_csm-eom_lsi-300,196,[6237],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-eom_lsi-300.feather,4,5,0.1,eom
907,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6408001780509949,mcs-4_ms-5_cse-0.1_csm-leaf_lsi-300,202,[6331],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.1_csm-leaf_lsi-300.feather,4,5,0.1,leaf
908,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4394230842590332,mcs-4_ms-5_cse-0.15_csm-eom_lsi-300,171,[5860],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-eom_lsi-300.feather,4,5,0.15,eom
909,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.44115692377090454,mcs-4_ms-5_cse-0.15_csm-leaf_lsi-300,173,[5890],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.15_csm-leaf_lsi-300.feather,4,5,0.15,leaf
910,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2372855246067047,mcs-4_ms-5_cse-0.2_csm-eom_lsi-300,133,[5162],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-eom_lsi-300.feather,4,5,0.2,eom
911,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2372855246067047,mcs-4_ms-5_cse-0.2_csm-leaf_lsi-300,133,[5162],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-4_ms-5_cse-0.2_csm-leaf_lsi-300.feather,4,5,0.2,leaf
912,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5457503199577332,mcs-5_ms-2_cse-0.0_csm-eom_lsi-300,291,[5668],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-eom_lsi-300.feather,5,2,0.0,eom
913,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5366377830505371,mcs-5_ms-2_cse-0.0_csm-leaf_lsi-300,305,[5897],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.0_csm-leaf_lsi-300.feather,5,2,0.0,leaf
914,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5457503199577332,mcs-5_ms-2_cse-0.01_csm-eom_lsi-300,291,[5668],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-eom_lsi-300.feather,5,2,0.01,eom
915,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5366377830505371,mcs-5_ms-2_cse-0.01_csm-leaf_lsi-300,305,[5897],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.01_csm-leaf_lsi-300.feather,5,2,0.01,leaf
916,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.548931896686554,mcs-5_ms-2_cse-0.05_csm-eom_lsi-300,288,[5626],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-eom_lsi-300.feather,5,2,0.05,eom
917,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5463529825210571,mcs-5_ms-2_cse-0.05_csm-leaf_lsi-300,296,[5692],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.05_csm-leaf_lsi-300.feather,5,2,0.05,leaf
918,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.49514490365982056,mcs-5_ms-2_cse-0.1_csm-eom_lsi-300,269,[5398],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-eom_lsi-300.feather,5,2,0.1,eom
919,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4948323369026184,mcs-5_ms-2_cse-0.1_csm-leaf_lsi-300,273,[5433],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.1_csm-leaf_lsi-300.feather,5,2,0.1,leaf
920,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2554447054862976,mcs-5_ms-2_cse-0.15_csm-eom_lsi-300,214,[4810],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-eom_lsi-300.feather,5,2,0.15,eom
921,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.25437861680984497,mcs-5_ms-2_cse-0.15_csm-leaf_lsi-300,216,[4817],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.15_csm-leaf_lsi-300.feather,5,2,0.15,leaf
922,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0689186081290245,mcs-5_ms-2_cse-0.2_csm-eom_lsi-300,157,[3936],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-eom_lsi-300.feather,5,2,0.2,eom
923,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0689186081290245,mcs-5_ms-2_cse-0.2_csm-leaf_lsi-300,157,[3936],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-2_cse-0.2_csm-leaf_lsi-300.feather,5,2,0.2,leaf
924,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6028168797492981,mcs-5_ms-3_cse-0.0_csm-eom_lsi-300,248,[5959],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-eom_lsi-300.feather,5,3,0.0,eom
925,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6076763272285461,mcs-5_ms-3_cse-0.0_csm-leaf_lsi-300,256,[6079],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.0_csm-leaf_lsi-300.feather,5,3,0.0,leaf
926,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6028168797492981,mcs-5_ms-3_cse-0.01_csm-eom_lsi-300,248,[5959],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-eom_lsi-300.feather,5,3,0.01,eom
927,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6076763272285461,mcs-5_ms-3_cse-0.01_csm-leaf_lsi-300,256,[6079],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.01_csm-leaf_lsi-300.feather,5,3,0.01,leaf
928,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.602694571018219,mcs-5_ms-3_cse-0.05_csm-eom_lsi-300,247,[5923],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-eom_lsi-300.feather,5,3,0.05,eom
929,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6097798347473145,mcs-5_ms-3_cse-0.05_csm-leaf_lsi-300,253,[6010],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.05_csm-leaf_lsi-300.feather,5,3,0.05,leaf
930,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5354530215263367,mcs-5_ms-3_cse-0.1_csm-eom_lsi-300,237,[5748],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-eom_lsi-300.feather,5,3,0.1,eom
931,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5384896397590637,mcs-5_ms-3_cse-0.1_csm-leaf_lsi-300,240,[5786],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.1_csm-leaf_lsi-300.feather,5,3,0.1,leaf
932,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3163371682167053,mcs-5_ms-3_cse-0.15_csm-eom_lsi-300,196,[5272],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-eom_lsi-300.feather,5,3,0.15,eom
933,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3165838420391083,mcs-5_ms-3_cse-0.15_csm-leaf_lsi-300,197,[5277],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.15_csm-leaf_lsi-300.feather,5,3,0.15,leaf
934,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.11794751137495041,mcs-5_ms-3_cse-0.2_csm-eom_lsi-300,149,[4441],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-eom_lsi-300.feather,5,3,0.2,eom
935,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.11745349317789078,mcs-5_ms-3_cse-0.2_csm-leaf_lsi-300,150,[4446],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-3_cse-0.2_csm-leaf_lsi-300.feather,5,3,0.2,leaf
936,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6264334917068481,mcs-5_ms-4_cse-0.0_csm-eom_lsi-300,213,[6113],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-eom_lsi-300.feather,5,4,0.0,eom
937,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6350945830345154,mcs-5_ms-4_cse-0.0_csm-leaf_lsi-300,222,[6256],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.0_csm-leaf_lsi-300.feather,5,4,0.0,leaf
938,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6264334917068481,mcs-5_ms-4_cse-0.01_csm-eom_lsi-300,213,[6113],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-eom_lsi-300.feather,5,4,0.01,eom
939,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6350945830345154,mcs-5_ms-4_cse-0.01_csm-leaf_lsi-300,222,[6256],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.01_csm-leaf_lsi-300.feather,5,4,0.01,leaf
940,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6246529817581177,mcs-5_ms-4_cse-0.05_csm-eom_lsi-300,212,[6071],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-eom_lsi-300.feather,5,4,0.05,eom
941,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6337604522705078,mcs-5_ms-4_cse-0.05_csm-leaf_lsi-300,220,[6183],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.05_csm-leaf_lsi-300.feather,5,4,0.05,leaf
942,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5749385356903076,mcs-5_ms-4_cse-0.1_csm-eom_lsi-300,206,[5980],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-eom_lsi-300.feather,5,4,0.1,eom
943,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5814861059188843,mcs-5_ms-4_cse-0.1_csm-leaf_lsi-300,209,[6018],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.1_csm-leaf_lsi-300.feather,5,4,0.1,leaf
944,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3822196424007416,mcs-5_ms-4_cse-0.15_csm-eom_lsi-300,179,[5620],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-eom_lsi-300.feather,5,4,0.15,eom
945,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3822196424007416,mcs-5_ms-4_cse-0.15_csm-leaf_lsi-300,179,[5620],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.15_csm-leaf_lsi-300.feather,5,4,0.15,leaf
946,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.18862132728099823,mcs-5_ms-4_cse-0.2_csm-eom_lsi-300,139,[4867],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-eom_lsi-300.feather,5,4,0.2,eom
947,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.18862132728099823,mcs-5_ms-4_cse-0.2_csm-leaf_lsi-300,139,[4867],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-4_cse-0.2_csm-leaf_lsi-300.feather,5,4,0.2,leaf
948,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6495218873023987,mcs-5_ms-5_cse-0.0_csm-eom_lsi-300,188,[6281],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-eom_lsi-300.feather,5,5,0.0,eom
949,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6554988026618958,mcs-5_ms-5_cse-0.0_csm-leaf_lsi-300,195,[6431],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.0_csm-leaf_lsi-300.feather,5,5,0.0,leaf
950,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6495218873023987,mcs-5_ms-5_cse-0.01_csm-eom_lsi-300,188,[6281],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-eom_lsi-300.feather,5,5,0.01,eom
951,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6554988026618958,mcs-5_ms-5_cse-0.01_csm-leaf_lsi-300,195,[6431],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.01_csm-leaf_lsi-300.feather,5,5,0.01,leaf
952,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6495218873023987,mcs-5_ms-5_cse-0.05_csm-eom_lsi-300,188,[6281],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-eom_lsi-300.feather,5,5,0.05,eom
953,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6554988026618958,mcs-5_ms-5_cse-0.05_csm-leaf_lsi-300,195,[6431],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.05_csm-leaf_lsi-300.feather,5,5,0.05,leaf
954,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.639971911907196,mcs-5_ms-5_cse-0.1_csm-eom_lsi-300,184,[6224],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-eom_lsi-300.feather,5,5,0.1,eom
955,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.6412867307662964,mcs-5_ms-5_cse-0.1_csm-leaf_lsi-300,185,[6245],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.1_csm-leaf_lsi-300.feather,5,5,0.1,leaf
956,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4451978802680969,mcs-5_ms-5_cse-0.15_csm-eom_lsi-300,164,[5895],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-eom_lsi-300.feather,5,5,0.15,eom
957,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4451978802680969,mcs-5_ms-5_cse-0.15_csm-leaf_lsi-300,164,[5895],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.15_csm-leaf_lsi-300.feather,5,5,0.15,leaf
958,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.24230298399925232,mcs-5_ms-5_cse-0.2_csm-eom_lsi-300,126,[5182],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-eom_lsi-300.feather,5,5,0.2,eom
959,300,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.24230298399925232,mcs-5_ms-5_cse-0.2_csm-leaf_lsi-300,126,[5182],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-5_ms-5_cse-0.2_csm-leaf_lsi-300.feather,5,5,0.2,leaf
960,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.452985554933548,mcs-2_ms-2_cse-0.0_csm-eom_lsi-400,702,[5204],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-eom_lsi-400.feather,2,2,0.0,eom
961,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.45834586024284363,mcs-2_ms-2_cse-0.0_csm-leaf_lsi-400,776,[5698],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.0_csm-leaf_lsi-400.feather,2,2,0.0,leaf
962,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4589990973472595,mcs-2_ms-2_cse-0.01_csm-eom_lsi-400,700,[5166],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-eom_lsi-400.feather,2,2,0.01,eom
963,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.46895167231559753,mcs-2_ms-2_cse-0.01_csm-leaf_lsi-400,764,[5588],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.01_csm-leaf_lsi-400.feather,2,2,0.01,leaf
964,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4614619314670563,mcs-2_ms-2_cse-0.05_csm-eom_lsi-400,683,[5009],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-eom_lsi-400.feather,2,2,0.05,eom
965,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.47277259826660156,mcs-2_ms-2_cse-0.05_csm-leaf_lsi-400,725,[5278],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.05_csm-leaf_lsi-400.feather,2,2,0.05,leaf
966,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.46288859844207764,mcs-2_ms-2_cse-0.1_csm-eom_lsi-400,654,[4870],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-eom_lsi-400.feather,2,2,0.1,eom
967,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.4717003107070923,mcs-2_ms-2_cse-0.1_csm-leaf_lsi-400,675,[4984],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.1_csm-leaf_lsi-400.feather,2,2,0.1,leaf
968,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.261426717042923,mcs-2_ms-2_cse-0.15_csm-eom_lsi-400,547,[4468],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-eom_lsi-400.feather,2,2,0.15,eom
969,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2619541585445404,mcs-2_ms-2_cse-0.15_csm-leaf_lsi-400,556,[4482],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.15_csm-leaf_lsi-400.feather,2,2,0.15,leaf
970,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.0967518761754036,mcs-2_ms-2_cse-0.2_csm-eom_lsi-400,401,[3778],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-eom_lsi-400.feather,2,2,0.2,eom
971,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.096019446849823,mcs-2_ms-2_cse-0.2_csm-leaf_lsi-400,404,[3780],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-2_cse-0.2_csm-leaf_lsi-400.feather,2,2,0.2,leaf
972,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5233619213104248,mcs-2_ms-3_cse-0.0_csm-eom_lsi-400,497,[5707],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-eom_lsi-400.feather,2,3,0.0,eom
973,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.48489683866500854,mcs-2_ms-3_cse-0.0_csm-leaf_lsi-400,597,[6700],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.0_csm-leaf_lsi-400.feather,2,3,0.0,leaf
974,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5328470468521118,mcs-2_ms-3_cse-0.01_csm-eom_lsi-400,495,[5658],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-eom_lsi-400.feather,2,3,0.01,eom
975,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5038101077079773,mcs-2_ms-3_cse-0.01_csm-leaf_lsi-400,583,[6512],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.01_csm-leaf_lsi-400.feather,2,3,0.01,leaf
976,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5259701013565063,mcs-2_ms-3_cse-0.05_csm-eom_lsi-400,489,[5601],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-eom_lsi-400.feather,2,3,0.05,eom
977,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.515284538269043,mcs-2_ms-3_cse-0.05_csm-leaf_lsi-400,551,[6112],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.05_csm-leaf_lsi-400.feather,2,3,0.05,leaf
978,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5173434019088745,mcs-2_ms-3_cse-0.1_csm-eom_lsi-400,476,[5497],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-eom_lsi-400.feather,2,3,0.1,eom
979,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5110050439834595,mcs-2_ms-3_cse-0.1_csm-leaf_lsi-400,510,[5710],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.1_csm-leaf_lsi-400.feather,2,3,0.1,leaf
980,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.30776330828666687,mcs-2_ms-3_cse-0.15_csm-eom_lsi-400,401,[5110],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-eom_lsi-400.feather,2,3,0.15,eom
981,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.30160894989967346,mcs-2_ms-3_cse-0.15_csm-leaf_lsi-400,419,[5156],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.15_csm-leaf_lsi-400.feather,2,3,0.15,leaf
982,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.16020560264587402,mcs-2_ms-3_cse-0.2_csm-eom_lsi-400,319,[4489],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-eom_lsi-400.feather,2,3,0.2,eom
983,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.15905530750751495,mcs-2_ms-3_cse-0.2_csm-leaf_lsi-400,322,[4491],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-3_cse-0.2_csm-leaf_lsi-400.feather,2,3,0.2,leaf
984,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.546471893787384,mcs-2_ms-4_cse-0.0_csm-eom_lsi-400,401,[5916],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-eom_lsi-400.feather,2,4,0.0,eom
985,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5019781589508057,mcs-2_ms-4_cse-0.0_csm-leaf_lsi-400,482,[6661],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.0_csm-leaf_lsi-400.feather,2,4,0.0,leaf
986,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.546471893787384,mcs-2_ms-4_cse-0.01_csm-eom_lsi-400,401,[5916],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-eom_lsi-400.feather,2,4,0.01,eom
987,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5213698148727417,mcs-2_ms-4_cse-0.01_csm-leaf_lsi-400,472,[6578],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.01_csm-leaf_lsi-400.feather,2,4,0.01,leaf
988,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.546471893787384,mcs-2_ms-4_cse-0.05_csm-eom_lsi-400,401,[5916],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-eom_lsi-400.feather,2,4,0.05,eom
989,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5336488485336304,mcs-2_ms-4_cse-0.05_csm-leaf_lsi-400,456,[6320],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.05_csm-leaf_lsi-400.feather,2,4,0.05,leaf
990,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5452507138252258,mcs-2_ms-4_cse-0.1_csm-eom_lsi-400,391,[5779],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-eom_lsi-400.feather,2,4,0.1,eom
991,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5394306182861328,mcs-2_ms-4_cse-0.1_csm-leaf_lsi-400,425,[5954],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.1_csm-leaf_lsi-400.feather,2,4,0.1,leaf
992,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.39832744002342224,mcs-2_ms-4_cse-0.15_csm-eom_lsi-400,348,[5504],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-eom_lsi-400.feather,2,4,0.15,eom
993,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.3902103304862976,mcs-2_ms-4_cse-0.15_csm-leaf_lsi-400,366,[5565],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.15_csm-leaf_lsi-400.feather,2,4,0.15,leaf
994,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.22161142528057098,mcs-2_ms-4_cse-0.2_csm-eom_lsi-400,283,[4968],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-eom_lsi-400.feather,2,4,0.2,eom
995,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.2167261242866516,mcs-2_ms-4_cse-0.2_csm-leaf_lsi-400,290,[4979],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-4_cse-0.2_csm-leaf_lsi-400.feather,2,4,0.2,leaf
996,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5629684925079346,mcs-2_ms-5_cse-0.0_csm-eom_lsi-400,334,[6136],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-eom_lsi-400.feather,2,5,0.0,eom
997,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5289788246154785,mcs-2_ms-5_cse-0.0_csm-leaf_lsi-400,402,[6726],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.0_csm-leaf_lsi-400.feather,2,5,0.0,leaf
998,400,/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan,0.5629684925079346,mcs-2_ms-5_cse-0.01_csm-eom_lsi-400,334,[6136],/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.01_csm-eom_lsi-400.feather,2,5,0.01,eom