-
Notifications
You must be signed in to change notification settings - Fork 0
/
train.json
1449 lines (1449 loc) · 71.7 KB
/
train.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
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
{
"dataset": "dirtycomputer/Toxic_Comment_Classification_Challenge",
"config": "dirtycomputer--Toxic_Comment_Classification_Challenge",
"split": "train",
"features": [
{
"feature_idx": 0,
"name": "id",
"type": { "dtype": "string", "_type": "Value" }
},
{
"feature_idx": 1,
"name": "comment_text",
"type": { "dtype": "string", "_type": "Value" }
},
{
"feature_idx": 2,
"name": "toxic",
"type": { "dtype": "int64", "_type": "Value" }
},
{
"feature_idx": 3,
"name": "severe_toxic",
"type": { "dtype": "int64", "_type": "Value" }
},
{
"feature_idx": 4,
"name": "obscene",
"type": { "dtype": "int64", "_type": "Value" }
},
{
"feature_idx": 5,
"name": "threat",
"type": { "dtype": "int64", "_type": "Value" }
},
{
"feature_idx": 6,
"name": "insult",
"type": { "dtype": "int64", "_type": "Value" }
},
{
"feature_idx": 7,
"name": "identity_hate",
"type": { "dtype": "int64", "_type": "Value" }
}
],
"rows": [
{
"row_idx": 0,
"row": {
"id": "0000997932d777bf",
"comment_text": "Explanation\nWhy the edits made under my username Hardcore Metallica Fan were reverted? They weren't vandalisms, just closure on some GAs after I voted at New York Dolls FAC. And please don't remove the template from the talk page since I'm retired now.89.205.38.27",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 1,
"row": {
"id": "000103f0d9cfb60f",
"comment_text": "D'aww! He matches this background colour I'm seemingly stuck with. Thanks. (talk) 21:51, January 11, 2016 (UTC)",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 2,
"row": {
"id": "000113f07ec002fd",
"comment_text": "Hey man, I'm really not trying to edit war. It's just that this guy is constantly removing relevant information and talking to me through edits instead of my talk page. He seems to care more about the formatting than the actual info.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 3,
"row": {
"id": "0001b41b1c6bb37e",
"comment_text": "\"\nMore\nI can't make any real suggestions on improvement - I wondered if the section statistics should be later on, or a subsection of \"\"types of accidents\"\" -I think the references may need tidying so that they are all in the exact same format ie date format etc. I can do that later on, if no-one else does first - if you have any preferences for formatting style on references or want to do it yourself please let me know.\n\nThere appears to be a backlog on articles for review so I guess there may be a delay until a reviewer turns up. It's listed in the relevant form eg Wikipedia:Good_article_nominations#Transport \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 4,
"row": {
"id": "0001d958c54c6e35",
"comment_text": "You, sir, are my hero. Any chance you remember what page that's on?",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 5,
"row": {
"id": "00025465d4725e87",
"comment_text": "\"\n\nCongratulations from me as well, use the tools well. · talk \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 6,
"row": {
"id": "0002bcb3da6cb337",
"comment_text": "COCKSUCKER BEFORE YOU PISS AROUND ON MY WORK",
"toxic": 1,
"severe_toxic": 1,
"obscene": 1,
"threat": 0,
"insult": 1,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 7,
"row": {
"id": "00031b1e95af7921",
"comment_text": "Your vandalism to the Matt Shirvington article has been reverted. Please don't do it again, or you will be banned.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 8,
"row": {
"id": "00037261f536c51d",
"comment_text": "Sorry if the word 'nonsense' was offensive to you. Anyway, I'm not intending to write anything in the article(wow they would jump on me for vandalism), I'm merely requesting that it be more encyclopedic so one can use it for school as a reference. I have been to the selective breeding page but it's almost a stub. It points to 'animal breeding' which is a short messy article that gives you no info. There must be someone around with expertise in eugenics? 93.161.107.169",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 9,
"row": {
"id": "00040093b2687caa",
"comment_text": "alignment on this subject and which are contrary to those of DuLithgow",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 10,
"row": {
"id": "0005300084f90edc",
"comment_text": "\"\nFair use rationale for Image:Wonju.jpg\n\nThanks for uploading Image:Wonju.jpg. I notice the image page specifies that the image is being used under fair use but there is no explanation or rationale as to why its use in Wikipedia articles constitutes fair use. In addition to the boilerplate fair use template, you must also write out on the image description page a specific explanation or rationale for why using this image in each article is consistent with fair use.\n\nPlease go to the image description page and edit it to include a fair use rationale.\n\nIf you have uploaded other fair use media, consider checking that you have specified the fair use rationale on those pages too. You can find a list of 'image' pages you have edited by clicking on the \"\"my contributions\"\" link (it is located at the very top of any Wikipedia page when you are logged in), and then selecting \"\"Image\"\" from the dropdown box. Note that any fair use images uploaded after 4 May, 2006, and lacking such an explanation will be deleted one week after they have been uploaded, as described on criteria for speedy deletion. If you have any questions please ask them at the Media copyright questions page. Thank you. (talk • contribs • ) \nUnspecified source for Image:Wonju.jpg\n\nThanks for uploading Image:Wonju.jpg. I noticed that the file's description page currently doesn't specify who created the content, so the copyright status is unclear. If you did not create this file yourself, then you will need to specify the owner of the copyright. If you obtained it from a website, then a link to the website from which it was taken, together with a restatement of that website's terms of use of its content, is usually sufficient information. However, if the copyright holder is different from the website's publisher, then their copyright should also be acknowledged.\n\nAs well as adding the source, please add a proper copyright licensing tag if the file doesn't have one already. If you created/took the picture, audio, or video then the tag can be used to release it under the GFDL. If you believe the media meets the criteria at Wikipedia:Fair use, use a tag such as or one of the other tags listed at Wikipedia:Image copyright tags#Fair use. See Wikipedia:Image copyright tags for the full list of copyright tags that you can use.\n\nIf you have uploaded other files, consider checking that you have specified their source and tagged them, too. You can find a list of files you have uploaded by following [ this link]. Unsourced and untagged images may be deleted one week after they have been tagged, as described on criteria for speedy deletion. If the image is copyrighted under a non-free license (per Wikipedia:Fair use) then the image will be deleted 48 hours after . If you have any questions please ask them at the Media copyright questions page. Thank you. (talk • contribs • ) \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 11,
"row": {
"id": "00054a5e18b50dd4",
"comment_text": "bbq \n\nbe a man and lets discuss it-maybe over the phone?",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 12,
"row": {
"id": "0005c987bdfc9d4b",
"comment_text": "Hey... what is it..\n@ | talk .\nWhat is it... an exclusive group of some WP TALIBANS...who are good at destroying, self-appointed purist who GANG UP any one who asks them questions abt their ANTI-SOCIAL and DESTRUCTIVE (non)-contribution at WP?\n\nAsk Sityush to clean up his behavior than issue me nonsensical warnings...",
"toxic": 1,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 13,
"row": {
"id": "0006f16e4e9f292e",
"comment_text": "Before you start throwing accusations and warnings at me, lets review the edit itself-making ad hominem attacks isn't going to strengthen your argument, it will merely make it look like you are abusing your power as an admin. \nNow, the edit itself is relevant-this is probably the single most talked about event int he news as of late. His absence is notable, since he is the only living ex-president who did not attend. That's certainly more notable than his dedicating an aircracft carrier. \nI intend to revert this edit, in hopes of attracting the attention of an admin that is willing to look at the issue itself, and not throw accusations around quite so liberally. Perhaps, if you achieve a level of civility where you can do this, we can have a rational discussion on the topic and resolve the matter peacefully.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 14,
"row": {
"id": "00070ef96486d6f9",
"comment_text": "Oh, and the girl above started her arguments with me. She stuck her nose where it doesn't belong. I believe the argument was between me and Yvesnimmo. But like I said, the situation was settled and I apologized. Thanks,",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 15,
"row": {
"id": "00078f8ce7eb276d",
"comment_text": "\"\n\nJuelz Santanas Age\n\nIn 2002, Juelz Santana was 18 years old, then came February 18th, which makes Juelz turn 19 making songs with The Diplomats. The third neff to be signed to Cam's label under Roc A Fella. In 2003, he was 20 years old coming out with his own singles \"\"Santana's Town\"\" and \"\"Down\"\". So yes, he is born in 1983. He really is, how could he be older then Lloyd Banks? And how could he be 22 when his birthday passed? The homie neff is 23 years old. 1983 - 2006 (Juelz death, god forbid if your thinking about that) equals 23. Go to your caculator and stop changing his year of birth. My god.\"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 16,
"row": {
"id": "0007e25b2121310b",
"comment_text": "Bye! \n\nDon't look, come or think of comming back! Tosser.",
"toxic": 1,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 17,
"row": {
"id": "000897889268bc93",
"comment_text": "REDIRECT Talk:Voydan Pop Georgiev- Chernodrinski",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 18,
"row": {
"id": "0009801bd85e5806",
"comment_text": "The Mitsurugi point made no sense - why not argue to include Hindi on Ryo Sakazaki's page to include more information?",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 19,
"row": {
"id": "0009eaea3325de8c",
"comment_text": "Don't mean to bother you \n\nI see that you're writing something regarding removing anything posted here and if you do oh well but if not and you can acctually discuss this with me then even better.\n\nI'd like to ask you to take a closer look at the Premature wrestling deaths catagory and the men listed in it, surely these men belong together in some catagory. Is there anything that you think we can do with the catagory besides delting it?",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 20,
"row": {
"id": "000b08c464718505",
"comment_text": "\"\n\n Regarding your recent edits \n\nOnce again, please read WP:FILMPLOT before editing any more film articles. Your edits are simply not good, with entirely too many unnecessary details and very bad writing. Please stop before you do further damage. -''''''The '45 \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 21,
"row": {
"id": "000bfd0867774845",
"comment_text": "\"\nGood to know. About me, yeah, I'm studying now.(Deepu) \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 22,
"row": {
"id": "000c0dfd995809fa",
"comment_text": "\"\n\n Snowflakes are NOT always symmetrical! \n\nUnder Geometry it is stated that \"\"A snowflake always has six symmetric arms.\"\" This assertion is simply not true! According to Kenneth Libbrecht, \"\"The rather unattractive irregular crystals are by far the most common variety.\"\" http://www.its.caltech.edu/~atomic/snowcrystals/myths/myths.htm#perfection Someone really need to take a look at his site and get FACTS off of it because I still see a decent number of falsities on this page. (forgive me Im new at this and dont want to edit anything)\"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 23,
"row": {
"id": "000c6a3f0cd3ba8e",
"comment_text": "\"\n\n The Signpost: 24 September 2012 \n\n Read this Signpost in full\n Single-page\n Unsubscribe\n \n\"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 24,
"row": {
"id": "000cfee90f50d471",
"comment_text": "\"\n\nRe-considering 1st paragraph edit?\nI don't understand the reasons for 's recent edit of this article not that I'm sure that the data are necessarily \"\"wrong.\"\" Rather, I'm persuaded that the strategy of introducing academic honors in the first paragraph is an unhelpful approach to this specific subject. I note that articles about other sitting Justices have been similarly \"\"enhanced;\"\" and I also believe those changes are no improvement. \n\nIn support of my view that this edit should be reverted, I would invite anyone to re-visit articles written about the following pairs of jurists.\n A1. Benjamin Cardozo\n A2. Learned Hand\n\n B1. John Marshall Harlan\n B2. John Marshall Harlan II\n\nThe question becomes: Would the current version of the Wikipedia article about any one of them or either pair be improved by academic credentials in the introductory paragraph? I think not.\n\nPerhaps it helps to repeat a wry argument Kathleen Sullivan of Stanford Law makes when she suggests that some on the Harvard Law faculty wonder how Antonin Scalia avoided learning what others have managed to grasp about the processes of judging? I would hope this anecdote gently illustrates the point. \n\nLess humorous, but an even stronger argument is the one Clarence Thomas makes when he mentions wanting to return his law degree to Yale.\n\nAt a minimum, I'm questioning this edit? It deserves to be reconsidered. \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 25,
"row": {
"id": "000eefc67a2c930f",
"comment_text": "Radial symmetry \n\nSeveral now extinct lineages included in the Echinodermata were bilateral such as Homostelea, or even asymmetrical such as Cothurnocystis (Stylophora).\n\n-",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 26,
"row": {
"id": "000f35deef84dc4a",
"comment_text": "There's no need to apologize. A Wikipedia article is made for reconciling knowledge about a subject from different sources, and you've done history studies and not archaeology studies, I guess. I could scan the page, e-mail it to you, and then you could ask someone to translate the page.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 27,
"row": {
"id": "000ffab30195c5e1",
"comment_text": "Yes, because the mother of the child in the case against Michael Jackson was studied in here motives and reasonings and judged upon her character just as harshly as Wacko Jacko himself. Don't tell me to ignore it and incriminate myself. I am going to continue refuting the bullshit that Jayjg keeps throwing at me. 18:01, 16 Jun 2005 (UTC)",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 28,
"row": {
"id": "0010307a3a50a353",
"comment_text": "\"\nOk. But it will take a bit of work but I can't quite picture it. Do you have an example I can base it on? the Duck \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 29,
"row": {
"id": "0010833a96e1f886",
"comment_text": "\"== A barnstar for you! ==\n\n The Real Life Barnstar lets us be the stars\n \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 30,
"row": {
"id": "0011cc71398479c4",
"comment_text": "How could I post before the block expires? The funny thing is, you think I'm being uncivil!",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 31,
"row": {
"id": "00128363e367d703",
"comment_text": "Not sure about a heading of 'Fight for Freedom' what will it contain?",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 32,
"row": {
"id": "001325b8b20ea8aa",
"comment_text": "Praise \n\nlooked at this article about 6 months ago -much improved. ]",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 33,
"row": {
"id": "001363e1dbe91225",
"comment_text": "I was able to post the above list so quickly because I already had it in a text file in my hard drive I've been meaning to get around to updating the sound list for some time now. \nAs far as generating interest I've spent four years trying to drum up more interest in freely licensed full length classical music. Unfortunately, my attempts failed - I'm still effectively the only one who does it. The classical music wikiproject was not interested, (Wikipedia_talk:WikiProject_Classical_music/Archive_5#Need_help.21Wikipedia_talk:WikiProject_Music/Archive_3#I_could_use_some_helpWikipedia_talk:WikiProject_Music/Archive_2#Raulbot.2C_and_the_music_list) So I really had given up trying to interest others. \nThe sound list was featured on digg a while back - http://digg.com/music/Wikipedia_has_free_classical_music_downloads . It got 1600 diggs, which is IMO very impressive.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 34,
"row": {
"id": "0013a8b1a5f26bcb",
"comment_text": "\"\nWell, not \"\"before the process\"\" but \"\"before how we do things with subpages\"\" His RfA is listed on NoSeptember's page and you can find it if you look. September 2004 I think. I have my differences with El_C to be sure, but was surprised to see a block, so I left a note. ++: t/c \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 35,
"row": {
"id": "00148d055a169b93",
"comment_text": "\"\n\nNot at all, you are making a straw man argument here. I never claimed O'Donohue had that position, rather that practitioners and researchers in the field ignored the DSM position, which is exactly what the quote says and also something O'Donohue agrees with. \n\nAgain, I was combating the notion that it was a \"\"absurd part\"\" to claim that pedophilia is a sexual orientation. Since many researchers hold this position, it would be unfair to call it absurd. The disorder part is divided in the field, some argue that it is not a disorder at all, some do. At the end of the day, it is a value judgment (as Cantor pointed out earlier in the thread), not a scientific judgement. If we choose to make this value judgment in the article, it should be stated clearly and not pretend to have a scientific basis. \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 36,
"row": {
"id": "00151a9f93c6b059",
"comment_text": "\"\n\n \"\"Mainland Asia\"\" includes \"\"the lower basin of China's Yangtze River\"\" as well as \"\"Korea\"\". But being specific is fine too. I just found a citation for a more comprehensive DNA study by Hammer below, rather than our generarizations and speculation so far. \n\n Citation for \"\"Yayoi culture was brought to Japan by migrants from Korea, who in turn trace their roots to southeast Asia/south China.\"\" \n\n 2005 DNA study by Hammer\n Describes the Yayoi migration from Korea based on the O-SRY(465) genes and other genes with close lineage (haplogroups O-M122 and O-M95).\nReiterates that \"\"the entire O haplogroup has been proposed to have a Southeast Asian origin.\"\" (Their definition of Southeast Asia includes southern China). Then hypothesizes that \"\"the dispersals of Neolithic farmers from Southeast Asia also brought haplogroup O lineages to Korea and eventually to Japan.\"\"\n In the concluding paragraph, it states \"\"we propose that the Yayoi Y chromosomes descend from prehistoric farmers that had their origins in southeastern Asia, perhaps going back to the origin of agriculture in this region.\"\"\n Hammer's DNA study is based on a \"\"global sample consisted of > 2,500 males from 39 Asian populations, including six populations sampled from across the Japanese archipelago.\"\"\n \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 37,
"row": {
"id": "0015f4aa35ebe9b5",
"comment_text": "pretty much everyone from warren county/surrounding regions was born at glens falls hospital. myself included. however, i'm not sure this qualifies anyone as being a glens falls native. rachel ray is, i believe, actually from the town of lake luzerne. —The preceding unsigned comment was added by 70.100.229.154 04:28:57, August 19, 2007 (UTC)",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 38,
"row": {
"id": "00169857adbc989b",
"comment_text": "Hi Explicit, can you block O Fenian for edit-warring on the Giant's Causeway wp. He has made several edits which can only be described as terrorism.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 39,
"row": {
"id": "0016e01b742b8da3",
"comment_text": "Notability of Rurika Kasuga\nA tag has been placed on Rurika Kasuga, requesting that it be speedily deleted from Wikipedia. This has been done because the article seems to be about a person, group of people, band, club, company, or web content, but it does not indicate how or why the subject is notable, that is, why an article about that subject should be included in Wikipedia. Under the criteria for speedy deletion, articles that do not assert notability may be deleted at any time. Please see the guidelines for what is generally accepted as notable, and if you can indicate why the subject of this article is notable, you may contest the tagging. To do this, add on the top of the page (below the existing db tag) and leave a note on the article's talk page explaining your position. Please do not remove the speedy deletion tag yourself, but don't hesitate to add information to the article that would confirm its subject's notability under the guidelines.\n\nFor guidelines on specific types of articles, you may want to check out our criteria for biographies, for web sites, for bands, or for companies. Feel free to leave a note on my talk page if you have any questions about this.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 40,
"row": {
"id": "001735f961a23fc4",
"comment_text": "\"\n Sure, but the lead must briefly summarize Armenia's history. I simply added what I found necessary. If anyone thinks this or that sentence is redundant for the lead, they are welcome to remove make edits. talk \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 41,
"row": {
"id": "00173958f46763a2",
"comment_text": "TFD \n\nI think we just eced. I think we responded to each other without seeing each others responses. I added something in response to yours, but don't know if you saw mine. (T/C//WP:CHICAGO/WP:FOUR)",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 42,
"row": {
"id": "001810bf8c45bf5f",
"comment_text": "You are gay or antisemmitian? \n\nArchangel WHite Tiger\n\nMeow! Greetingshhh!\n\nUh, there are two ways, why you do erased my comment about WW2, that holocaust was brutally slaying of Jews and not gays/Gypsys/Slavs/anyone...\n\n1 - If you are anti-semitian, than shave your head bald and go to the skinhead meetings!\n\n2 - If you doubt words of the Bible, that homosexuality is a deadly sin, make a pentagram tatoo on your forehead go to the satanistic masses with your gay pals!\n\n3 - First and last warning, you fucking gay - I won't appreciate if any more nazi shwain would write in my page! I don't wish to talk to you anymore!\n\nBeware of the Dark Side!",
"toxic": 1,
"severe_toxic": 0,
"obscene": 1,
"threat": 0,
"insult": 1,
"identity_hate": 1
},
"truncated_cells": []
},
{
"row_idx": 43,
"row": {
"id": "00190820581d90ce",
"comment_text": "FUCK YOUR FILTHY MOTHER IN THE ASS, DRY!",
"toxic": 1,
"severe_toxic": 0,
"obscene": 1,
"threat": 0,
"insult": 1,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 44,
"row": {
"id": "001956c382006abd",
"comment_text": "I'm Sorry \n\nI'm sorry I screwed around with someones talk page. It was very bad to do. I know how having the templates on their talk page helps you assert your dominance over them. I know I should bow down to the almighty administrators. But then again, I'm going to go play outside....with your mom. 76.122.79.82",
"toxic": 1,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 45,
"row": {
"id": "001b2dd65d9d925c",
"comment_text": "I don't believe the Lisak criticism present there conforms with the NPV rule. Lisak doesn't have a neutral point of view to begin with. If an offer to polygraph or even concerned review of polygraph results shocks a complainant into thinking her lies have been uncovered, the recantation is still perfectly valid. If you know you are telling the truth, you will argue with machine or investigator. Also part of Kanin's research was a followup of the recanted story where possible to verify if any were false recantations. In all followups the recanted version of events matched what the accused said happened.\n\nArguing that Lisak is a respected PHD is baseless if Kanin is a respected PHD. I agree that my edit wasn't as neutral as possible though, so apologize for that. Still something must be done here.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 46,
"row": {
"id": "001c419c445b5a59",
"comment_text": "You had a point, and it's now ammended with appropriate encyclopedic notability/significance.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 47,
"row": {
"id": "001c557175094f10",
"comment_text": "In other words, you're too lazy to actually point anything out. Until you change that approach, the tag goes.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 48,
"row": {
"id": "001cadfd324f8087",
"comment_text": "\"\nAs for your claims of \"\"stalking\"\", that is absolute rubbish and serves only to aggravate the situation. I have assumed good faith (and good intentions) on your part, and have never suggested (or seen reason to suggest) that you might have some ulterior motive in mass-adding links to one specific company's web page. Nor, for that matter, have I ever made any suggestion that this is an \"\"administrative\"\" matter or even mentioned such a role. (Clearly, as a party to this disagreement, I would not do so at any rate as it would be a conflict of interest.) I would ask that you thus extend the same good faith toward me, rather than making spurious and unfounded accusations. ''''''chatspy \n\n\"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 49,
"row": {
"id": "001d874a4d3e8813",
"comment_text": "\"::::Jmabel; in regards to predominant scholary consensus who is it that allegedly claims \"\"despite \"\"Third Way\"\" rhetoric, fascism in power functioned rather consistently as a right-wing force\"\"? As far as I'm aware (owning numerous books on the subject) that is not the scholary consensus at all. The consensus, developed by respected scholars of fascism who write in a manner which is not bias to any interest group such as Roger Griffin, Hamish McDonald, Roger Eatwell and Zeev Sternhell all recongise fascism as a \"\"Third Way\"\" as the references show.\n\nThe only dissenters I'm aware of who seem to think fascism has absoutely no leftist connections and is merely a radical right system are street level socialists who want to put as much distance between the movements as possible. This of course does not come from educated people in a position to write books. For example, even the foremost scholary expert on Fascism, and a former member of both the Communist Party and then Socialist Party of Italy, Renzo De Felice doesn't try to \"\"cover up\"\" its socialistic origins and third way status. This is a man who has wrote a definitive seven volume piece on Mussolini. - \n\n\"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 50,
"row": {
"id": "001d8e7be417776a",
"comment_text": "\"\n\nBI, you said you wanted to talk\n\nAt the bottom of the lead section you have written:\n\n\"\"Its promoter speculated in 1994 that the skyhook concept could be cost competitive with what is realistically thought to be achievable using a space elevator, but the skyhook is not competitive with other rotating tether concepts. In addition, the rotating skyhook is in fact deemed \"\"not engineeringly feasible using presently available materials\"\".\"\"\n\nRegarding: In addition, the rotating skyhook is in fact deemed \"\"not engineeringly feasible using presently available materials\"\"\n\nThat statement appears to come from Ref [3] on page 10. The full quote is\n\n\"\"If the mass of the tether alone started to exceed 200 times the mass of the payload,\nthen that was an indication the particular scenario being considered was not engineeringly\nfeasible using presently available materials, although the application might become feasible in\nthe near future as better materials become available with higher tensile strengths at higher\noperational temperatures.\"\"\n\nIt then goes on to say\n\n\"\"As we shall see, presently available commercial materials will suffice to make the HASTOL\ntethers needed. The primary message we want to leave with the Reader is:\n“We don't need magic materials like ‘Buckminster-Fuller-carbon-nanotubes’ to make\nthe space tether facility for a HASTOL system. Existing materials will do.”\"\"\n\nSo it would appear that you misread your reference. The tether mass of 200 times mass of the payload mass is the upper limit to the problem. Systems where the tether mass is less than 200 times the payload mass can be built with \"\"presently available commercial materials.\"\"\n\nTo further reinforce this the Conclusion to the report states\n\n\"\"The fundamental conclusion of the Phase I HASTOL study effort is that the concept is\ntechnically feasible. We have evaluated a number of alternate system configurations that will\nallow hypersonic air-breathing vehicle technologies to be combined with orbiting, spinning space\ntether technologies to provide a method of moving payloads from the surface of the Earth into\nEarth orbit. For more than one HASTOL architecture concept, we have developed a design\nsolution using existing, or near-term technologies. We expect that a number of the other\nHASTOL architecture concepts will prove similarly technically feasible when subjected to\ndetailed design studies. The systems are completely reusable and have the potential of drastically\nreducing the cost of Earth-to-orbit space access.\"\"\n\nRegarding: \"\"but the skyhook is not competitive with other rotating tether concepts.\"\" and \n\n\"\"A 2000 Boeing report on the possibillity of combining skyhooks with hypersonic planes concluded that \"\"In general, the non-spinning tether HyperSkyhook concept does not look competitive with the spinning tether concepts.\"\".\"\"\n\nThe full quote is:\n\n\"\"HyperSkyhook\n\nIn 1995 Zubrin proposed the “Hypersonic Skyhook” as a solution to the mismatch between\nthe attainable atmospheric speeds of a hypersonic airplane and the orbital speeds of space tethers.\nSince the orbital speed of the space tether decreases with increasing altitu",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 51,
"row": {
"id": "001dc38a83d420cf",
"comment_text": "GET FUCKED UP. GET FUCKEEED UP. GOT A DRINK THAT YOU CANT PUT DOWN???/ GET FUCK UP GET FUCKED UP. I'M FUCKED UP RIGHT NOW!",
"toxic": 1,
"severe_toxic": 0,
"obscene": 1,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 52,
"row": {
"id": "001e89eb3f0b0915",
"comment_text": "Are you threatening me for disputing neutrality? I know in your country it's quite common to bully your way through a discussion and push outcomes you want. But this is not Russia.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 53,
"row": {
"id": "001ee16c46a99262",
"comment_text": "Thanks! Undeletion was more than I'd hoped for. I'm researching the status of Texas government (including local government) copyright status, but it's slow going. Apparently works of the Florida government are usually public domain, but we don't have a similar article on Texas, so I guess I'll have to research the old-fashioned, non-lazy, actually reliable way. Or ask the copyright help desk, like you suggested. In the meantime, I'm using the fair use rationale, since it's valid while the image is used in an article. Thanks again! -",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 54,
"row": {
"id": "001ffdcc3e7fb49c",
"comment_text": "Awesome! Then I'll simply disregard your notice. Thanks!",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 55,
"row": {
"id": "0020e7119b96eeeb",
"comment_text": "Stupid peace of shit stop deleting my stuff asshole go die and fall in a hole go to hell!",
"toxic": 1,
"severe_toxic": 1,
"obscene": 1,
"threat": 0,
"insult": 1,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 56,
"row": {
"id": "0020fd96ed3b8c8b",
"comment_text": "=Tony Sidaway is obviously a fistfuckee. He loves an arm up his ass.",
"toxic": 1,
"severe_toxic": 0,
"obscene": 1,
"threat": 0,
"insult": 1,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 57,
"row": {
"id": "00218d74784ce50b",
"comment_text": "\"\n\n GA Review II \n\nI'm sorry to say this, but I have to fail this article's GAN. The several major problems that brought up in this article's previous GA assessment have not been issued. As s/he has said before me, \"\"he article's WP:LEAD should be longer. The History, Media attention, Academics, Student Government, Demographics, Trivia, and Additional Information section are very deficient in citiations. Also, Triva and Additional information should be integrated into the rest of the article.\"\" Again, please look over WP:WIAGA and fix these problem, then renominate it for GA-class. However, I have re-assessed this article as B-class, as it does meet B-class criteria. My regards, \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 58,
"row": {
"id": "0021fe88bc4da3e6",
"comment_text": "My Band Page's deletion. You thought I was gone. \n\nDeleting the comment I posted on your 'talk page' does not delete my feelings for your hasty decision to delete my page. You, sir, are still a cock-sucking douche fuck. Sit back for a second and think about what your life has become. ............ Done? That didn't take long did it? Nope. Because, as I am most certainly aware, your life is a shitstorm of sitting in front of the computer masturbating to fictional creatures. Your attempts to get rid of me are mediocre at best. You are constantly sucking the dick of failure. You don't want a personal attack, huh? Well, too bad, Fuckcock McDickerson. You've got one. From me. You can go ahead and delete my profile from wikipedia. I'll just make another one and come right back to 'Syrthiss's talk page and insult the dick off of you. How could you shatter the dreams of an innocent eighteen year old college freshman trying to make a name for his band. Does that make you happy? Fucking with people because you're an overweight, single, old man in a dead-end job. Did you spot that perhaps someone else was going to follow his dreams and you were trying to hold him back so somebody else could suffer like you? Yes you did. I don't make empty threats, so I won't be saying anything along the lines of 'i'll hurt you' or 'i'll eat the children from within your sister's womb', but I will say that you are a asshole, son-of-a-bitch, mother fucking cock sucker. So, go eat some more food and drown your sorrows you premature ejaculating, bald headed fuck.\n\nYou should do something nice for yourself, maybe go grab a couple of Horny Goat Weeds from your local convenience store and jack off for a little longer than three minutes tonight.\n\nSincerely,\nAn Asshole That's Better Than You In Every Way.",
"toxic": 1,
"severe_toxic": 0,
"obscene": 1,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 59,
"row": {
"id": "002264ea4d5f2887",
"comment_text": "Why can't you believe how fat Artie is? Did you see him on his recent appearence on the Tonight Show with Jay Leno? He looks absolutely AWFUL! If I had to put money on it, I'd say that Artie Lange is a can't miss candidate for the 2007 Dead pool! \n\n \nKindly keep your malicious fingers off of my above comment, . Everytime you remove it, I will repost it!!!",
"toxic": 1,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 60,
"row": {
"id": "00229d44f41f3acb",
"comment_text": "Locking this page would also violate WP:NEWBIES. Whether you like it or not, conservatives are Wikipedians too.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 61,
"row": {
"id": "0022cf8467ebc9fd",
"comment_text": "A Bisexual, like a homosexual or a heterosexual, is not defined by sexual activity. (Much like a 15 year old boy who is attracted to a girl sexually but has never had sex is still straight). A person who is actually sexually attracted/aroused by the same sex as well as the opposite sex is bisexual.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 62,
"row": {
"id": "0023daf96917e0d0",
"comment_text": "REDIRECT Talk:Frank Herbert Mason",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 63,
"row": {
"id": "002746baedcdff10",
"comment_text": "\"\n\n\"\"Christian arabs\"\"\nHi. Could you please stop enforcing the category \"\"Christian arabs\"\" on non arabic Christians living in the middle east? This is wrong. We middle-eastern Christians, though not arabs, have gone through Arabization, and that needs to stop. We are not arabs. We have our own ethnicity, and we shouldn't be forced to be called \"\"Christian arabs\"\". If a Christian European is born in the middle east, should he be called a \"\"Christian arab\"\" because of that reason alone? Please understand, they are Syriac Christians (i.e. of Assyrian ancestry), and most of them speak Aramaic, though a lot of them are forgetting it. As someone who speaks Aramaic, you should respect this fact, and not appease muslims who want to call everyone arabs just because they're in the middle east. We are not closely related to the arabs from Saudiarabia. We have our own ethnicity, please stop forcing upon us some alien arab ethnicity. That's oppression. |Talk 12:17 26 Jun, 2007 (UTC)\"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 64,
"row": {
"id": "00280c0d0652b366",
"comment_text": "\"\n\n DH \nDude, ABC officially says THIS is the name for that episode. I do know there is already an episode with that name, but ABC says it's \"\"Everybody's Says Don't\"\". \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 65,
"row": {
"id": "0028d62e8a5629aa",
"comment_text": "All of my edits are good. Cunts like you who revert good edits because you're too stupid to understand how to write well , and then revert other edits just because you've decided to bear a playground grudge, are the problem. Maybe one day you'll realise the damage you did to a noble project. 201.215.187.159",
"toxic": 1,
"severe_toxic": 0,
"obscene": 1,
"threat": 0,
"insult": 1,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 66,
"row": {
"id": "00290e2a171dd073",
"comment_text": "\"\n - NeilN's bang on - You aren't being harassed at all, If you don't edit disruptively you don't get reverted. –Talk \"",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{
"row_idx": 67,
"row": {
"id": "002918ae66cc4bc2",
"comment_text": "I went there around the same time he did, and that certainly was not the case at the time. Later on they stopped taking children from such a young age.",
"toxic": 0,
"severe_toxic": 0,
"obscene": 0,
"threat": 0,
"insult": 0,
"identity_hate": 0
},
"truncated_cells": []
},
{