-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataset.json
3319 lines (3319 loc) · 142 KB
/
dataset.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
[
{
"extract": "Your model is a black hole from which no light escapes.",
"label": "Unprofessional comment"
},
{
"extract": "If there ever is an award for most acronyms in a paper, this one would win it hands down.",
"context": "Finally, it is impossible for the reader to keep track of the hundreds (thousands?) of acronyms in the paper. If there ever is an award for most acronyms in a paper, this one would win it hands down.",
"label": "Unprofessional comment"
},
{
"extract": "I urge the authors to consider and discuss the consequences of what they propose with more rigor and based on a wider review of current evidence, rather than building hypothetical castles in the air.",
"label": "Unprofessional comment"
},
{
"extract": "Finally, the paper is poorly and hastily written, with typos, poor organization, and poor characterization of the basic work it's built on.",
"label": "Unconstructive comment"
},
{
"extract": "The paper is long, very long, and got longer. It was hard to get engaged. There is no metaanalysis - why does the material have to be so long?",
"label": "Unconstructive comment"
},
{
"extract": "The content of this paper is neither novel nor exciting",
"label": "Unconstructive comment"
},
{
"extract": "English of the manuscripts need improvisation.",
"label": "Unconstructive comment"
},
{
"extract": "This paper cannot be accepted; it does not meet basic scientific writing.",
"label": "Unconstructive comment"
},
{
"extract": "This is one of the worst papers I have reviewed in recent years.",
"label": "Unprofessional comment"
},
{
"extract": "And it's not clear to me if the authors believe this is a problem they could handle.",
"label": "Unprofessional comment"
},
{
"extract": "This paper…. did not excite me.",
"label": "Unprofessional comment"
},
{
"extract": "I think the paper is poorly written and most of its statements are wrongly and poorly motivated.",
"context": "The manuscript is generally interesting, however, too narrow in its scope for us. Also, the paper is badly written, and poorly organized. In its current form, the paper cannot be accepted. The paper is poorly written or poorly thought-out. I think the paper is poorly written and most of its statements are wrongly and poorly motivated.",
"label": "Unconstructive comment"
},
{
"extract": "The authors seem to be reinventing the wheel and a flat tire to go along with it.'",
"label": "Unprofessional comment"
},
{
"extract": "If published, uneducated and misinformed statements like this would jeopardize the credibility of [name of journal].",
"label": "Unconstructive comment"
},
{
"extract": "This study is weak. No innovation.",
"label": "Unconstructive comment"
},
{
"extract": "The authors past work (which is related closely to this) has gained some attention in the community: most of this is due to the wrong reasons.",
"label": "Unconstructive comment"
},
{
"extract": "Returning to the introduction, the study rationale is unclear, the exact research question to be addressed poorly delineated and the overall motivation for the study poorly linked to the literature summary and aims of the study.",
"label": "Unconstructive comment"
},
{
"extract": "The arguments in the paper are compelling but not convincing.",
"label": "Unconstructive comment"
},
{
"extract": "I thought that the author might be trying to 'have it both ways.' To be clear, this was just a passing thought and frankly, I read the manuscript about two weeks ago and don't remember the context, nor did I cross-walk one part of the essay with another to validate the thought.",
"label": "Unconstructive comment"
},
{
"extract": "All I can say is that the author is blissfully unaware of what a standard is - in linguistic terms - and does not have the linguistic competence to describe it.",
"label": "Unprofessional comment"
},
{
"extract": "To improve this you need to be more robust on all fronts etc.",
"label": "Unconstructive comment"
},
{
"extract": "“I would have preferred to read a meta-analysis”",
"label": "Unconstructive comment"
},
{
"extract": "The whole premise just reverted the biosensor field back 20 years, which has been my biggest single concern regarding this paper.",
"label": "Unprofessional comment"
},
{
"extract": "Despite promising a very general result this manuscript unfortunately does not deliver (almost) any of the things listed in the abstract.",
"label": "Unconstructive comment"
},
{
"extract": "Paper Strengths: None",
"label": "Unconstructive comment"
},
{
"extract": "The turn of phrase 'reaching out into the world'; is again just a vague rhetorical equivocation that is meant to add a semblance of an intellectual air to the text, a rhetorical attempt at being in fashion, but it dissolves only in empty intellectualism.",
"label": "Unprofessional comment"
},
{
"extract": "Is this a joke?",
"label": "Unprofessional comment"
},
{
"extract": "Indeed, the article as a whole shows a lack of sophistication and nuance that is diagnostic of the particular genre of thought pieces on the need for studying sex differences that it falls within",
"label": "Unprofessional comment"
},
{
"extract": "At least I say it to your face and sign my name",
"label": "Unprofessional comment"
},
{
"extract": "While I personally enjoyed this contribution, I cannot escape the sense that this is much ado about very little, to paraphrase Shakespeare.",
"label": "Unprofessional comment"
},
{
"extract": "I read the first 6 pages of the paper. Sorry, I can't finish reading this paper. I certainly will not recommend anyone else.",
"label": "Unprofessional comment"
},
{
"extract": "I also added back in the two lines on p.16 that you'd inexplicably deleted. If there's a reason for their deletion, let me know.",
"label": "Unconstructive comment"
},
{
"extract": "This is a very weak paper trying to bend things to build a relationship that does not exist. Stating X is totally wrong and your data does not support that and no model can state this.",
"label": "Unprofessional comment"
},
{
"extract": "Strictly speaking, the manuscript shall be rejected in its current form if submitted for a journal.",
"label": "Unconstructive comment"
},
{
"extract": "This is a confusing paper.",
"label": "Unconstructive comment"
},
{
"extract": "This was the moment when I stopped reading. Obviously the authors are not familiar with the research field.",
"label": "Unprofessional comment"
},
{
"extract": "The authors have not bothered to learn the first thing about the theories they are hoping to refute with ill-designed experiments and muddled rationale.",
"label": "Unprofessional comment"
},
{
"extract": "If I never see another piece of writing started with these lines, it will still be too soon.",
"label": "Unprofessional comment"
},
{
"extract": "If this was taken from a successfully defended thesis, as it appears to have been, then he should not have been awarded a PhD",
"label": "Unprofessional comment"
},
{
"extract": "The title appears to me to be clickbait, and, as usual for clickbait, leads to disappointment.",
"label": "Unprofessional comment"
},
{
"extract": "Maybe the clarity of stating the problem, purpose, method, finding, conclusion, and recommendation could be tweaked. Otherwise, congratulations on an outstanding contribution.",
"label": "Unconstructive comment"
},
{
"extract": "This literature review is nothing more than a merry dance around the books",
"label": "Unprofessional comment"
},
{
"extract": "The text is overly expansive, desultory, and often diaphanous, so that the raison d'être of an overarching theoretical structure is neither pellucid nor convincing.",
"label": "Unconstructive comment"
},
{
"extract": "The results look like a smorgasbord of data",
"label": "Unconstructive comment"
},
{
"extract": "Despite the apparently impeccable arrangement of the essay, with headings and sub-headings, the progression of argument is not always transparent, often hindered by otiose wording.",
"label": "Unconstructive comment"
},
{
"extract": "Indeed, by the end of the paper, the reader is left with a feeling of 'so what now?'",
"label": "Unconstructive comment"
},
{
"extract": "If participants were recruited from a university, I imagine they would usually be 18-22 years old. Why does your sample range from 18 to 63? I'm a bit lost here.",
"label": "Unconstructive comment"
},
{
"extract": "The fact that the question of this paper has never been asked should, on balance, count against the paper.",
"label": "Unprofessional comment"
},
{
"extract": "This paper does not offer a revolutionary breakthrough.",
"label": "Unprofessional comment"
},
{
"extract": "Is this really a discovery or just the confirmation of math?",
"label": "Unprofessional comment"
},
{
"extract": "I'm really sorry about this reviewer. If you'd like, I can get you a new one.",
"label": "Unconstructive comment"
},
{
"extract": "References are incomplete, listing only year and not volume, page numbers, etc. The lack of attention to this detail is a pet peeve.",
"label": "Unprofessional comment"
},
{
"extract": "Large parts of the manuscript read now more like a Master thesis than a scientific paper. I hope that the more experienced co-authors - if there are any - can help with this aspect of style.",
"label": "Unprofessional comment"
},
{
"extract": "Do we need to clarify the meaning of 'all'?",
"label": "Unconstructive comment"
},
{
"extract": "While an interesting concept, in its current form, the approach taken is fundamentally inadequate and flawed for almost all use cases.",
"label": "Unprofessional comment"
},
{
"extract": "There is too much detail provided which is not relevant to the paper, or any for that matter.",
"label": "Unprofessional comment"
},
{
"extract": "I don't see much science in this manuscript.",
"label": "Unprofessional comment"
},
{
"extract": "I haven't read the word 'audacity' yet in commenting on my reviews, so that is a first.",
"label": "Unconstructive comment"
},
{
"extract": "I don't see how your approach has potential to shed light on a question that anyone might have.",
"label": "Unconstructive comment"
},
{
"extract": "It is a bit strange for me that authors have used Python for statistical analysis instead of SPSS or MATLAB as usual. Please, explain",
"label": "Unconstructive comment"
},
{
"extract": "The paper could be considered for acceptance given a rewrite of the paper and change in the title and abstract.",
"label": "Unprofessional comment"
},
{
"extract": "The proposal is also poorly written and unfocused with only brief moments of meritorious thinking.",
"label": "Unprofessional comment"
},
{
"extract": "The scientific contribution of this paper - if there is any at all - is at best hopelessly insignificant.",
"label": "Unprofessional comment"
},
{
"extract": "But there have been treatments along these exact lines that are uncited: [A fictional novel about a hypothetical war] and [an op-ed in the Washington Post].",
"label": "Unconstructive comment"
},
{
"extract": "So overall we do not recommend a resubmission, but can let you try if you insist",
"label": "Unprofessional comment"
},
{
"extract": "This discussion might be better directed to a different audience, perhaps an undergraduate class",
"label": "Unprofessional comment"
},
{
"extract": "In my opinion, this is a fundamental wrong approach.",
"label": "Unprofessional comment"
},
{
"extract": "This paper makes no contribution.",
"label": "Unprofessional comment"
},
{
"extract": "The applicant does not address the broader impacts of the proposal, other than its potential benefit to global human health.",
"label": "Unconstructive comment"
},
{
"extract": "My major concern to accept this work-in-progress paper is that these findings are not super interesting to readers in my opinion.",
"label": "Unconstructive comment"
},
{
"extract": "But fundamentally, why did you bother?",
"label": "Unprofessional comment"
},
{
"extract": "The proposal is also poorly written and unfocused with only brief moments of meritorious thinking",
"label": "Unprofessional comment"
},
{
"extract": "This work is antithetical to the spirit of [research] and will impede potentially important developments.",
"label": "Unprofessional comment"
},
{
"extract": "Your discipline doesn't exist",
"label": "Unprofessional comment"
},
{
"extract": "However, bad language, weird sentences, half true statements and even nonsense statements continue throughout the draft, I refuse to review more of this draft until these language issues get fixed properly.",
"label": "Unprofessional comment"
},
{
"extract": "Publication of this paper will not advance our knowledge in any shape of form, it will just result in other researchers pointing out how bad this study actually is",
"label": "Unprofessional comment"
},
{
"extract": "I have read this manuscript twice, which given the grammatical howlers in the Abstract would appear to be more times than it has been read by the authors.",
"context": "I have read this manuscript twice, which given the grammatical howlers in the Abstract would appear to be more times than it has been read by the authors. Given the lack of proof-reading and my concern over the methods used, I shall not comment beyond the end of the methods section, and shall comment selectively rather than exhaustively (which would indeed be exhausting).",
"label": "Unprofessional comment"
},
{
"extract": "I am personally offended that the authors believed that this study had a reasonable chance of being accepted to a serious scientific journal.",
"label": "Unprofessional comment"
},
{
"extract": "Did you have a seizure while writing this sentence? Because I feel like I had one while reading it.",
"label": "Unprofessional comment"
},
{
"extract": "While the authors do pick a good problem, that's where the quality of the paper ends for me.",
"label": "Unprofessional comment"
},
{
"extract": "I started reading this manuscript with much anticipation but my enthusiasm was short lived.",
"label": "Unprofessional comment"
},
{
"extract": "This result would be great if it were true",
"label": "Unprofessional comment"
},
{
"extract": "This is a sin of omission!",
"label": "Unprofessional comment"
},
{
"extract": "The result does improve the state-of-the-art, but it is not strong enough for acceptance",
"label": "Unconstructive comment"
},
{
"extract": "The supportive tone of this review... took some effort.",
"label": "Unprofessional comment"
},
{
"extract": "I would advise the authors to go back to the drawing board and consider exactly what this paper is trying to do and do this well.",
"label": "Unprofessional comment"
},
{
"extract": "Yes measurements were made, but why, besides a teaching exercise, remains obscure.",
"label": "Unprofessional comment"
},
{
"extract": "The authors are amateurs",
"label": "Unprofessional comment"
},
{
"extract": "In any aspect that this paper is different from XXX et al., (20XX), it shouldn't be",
"label": "Unconstructive comment"
},
{
"extract": "The first sentence is unfortunate",
"label": "Unconstructive comment"
},
{
"extract": "This paper is very weak.",
"label": "Unconstructive comment"
},
{
"extract": "When the reader is finished struggling through all the methods and results, he/she is left wondering whether it was worth the time.",
"label": "Unprofessional comment"
},
{
"extract": "There is hardly any paragraph (even in the abstract) that is not messy, disorganized, confusing, that does not contain mistakes (some are quite embarrassing), redundancies, abusive shortcuts or discussions that sound absurd",
"label": "Unprofessional comment"
},
{
"extract": "Frankly, she knows nothing about invasion biology or the Great Lakes and should stick with what she does know.",
"label": "Unprofessional comment"
},
{
"extract": "My summary assessment of the paper is as follows: Introduction: Poor Background: Poor Methods: Poor Results: Poor Discussion: Poor Conclusions: Poor Overall assessment: Poor Recommendation: Reject Further Comments: Why was this submitted to a journal?",
"label": "Unprofessional comment"
},
{
"extract": "The presentation of the paper is difficult to follow for a hard scientist and it sometimes reads as if it were machine generated.",
"label": "Unconstructive comment"
},
{
"extract": "Most part of 'methodology' is useless, most of paragraphs are inrelevant to the main topics.",
"label": "Unconstructive comment"
},
{
"extract": "Sometimes I am diplomatic and sometimes critical, but this time I am resolute. I fail to see the contribution either to physics or social science.",
"label": "Unconstructive comment"
},
{
"extract": "This is a very difficult paper to review, and difficult - even painful - to read",
"label": "Unprofessional comment"
},
{
"extract": "Our community needs to combat this sort of unreflexive pseudo-scholarship.",
"context": "XX is inserted purely for fashion, adds nothing, and reflects the authors' belief/wish that fashionable papers regardless of logic or content have a larger chance of acceptance. Our community needs to combat this sort of unreflexive pseudo-scholarship.",
"label": "Unprofessional comment"
},
{
"extract": "Perhaps what I have written is deflating.",
"label": "Unprofessional comment"
},
{
"extract": "I am sorry but this paper does not leave me satisfied",
"label": "Unprofessional comment"
},
{
"extract": "I had no idea what this concept was until reading your paper, but your abstract wouldn't have made me want to read it had I not been a reviewer",
"label": "Unprofessional comment"
},
{
"extract": "The experimental design is a bit funny",
"label": "Unprofessional comment"
},
{
"extract": "I cannot make out signs of independent thinking, work beyond the state of the art, or anything ground-breaking.",
"label": "Unconstructive comment"
},
{
"extract": "This reviewer was a bit concerned about the results section given that it appears that participants in the current study were randomly assigned to one of three experimental conditions",
"label": "Unconstructive comment"
},
{
"extract": "The problem with jargon is that any idiot can pick it up and have a go.",
"context": "claiming 'insights' that rarely amount to very much beyond the bleeding obvious. The problem with jargon is that any idiot can pick it up and have a go",
"label": "Unprofessional comment"
},
{
"extract": "The results are as weak as a wet noodle",
"label": "Unprofessional comment"
},
{
"extract": "The manuscript embarrassingly fails in addressing the declared aims.",
"label": "Unconstructive comment"
},
{
"extract": "The authors are actual fools and it would be in the editor's best interest to ban them from submitting to the journal in the future.",
"context": "There are two possibilities. 1) This paper is part of an experiment to try and determine how badly a research paper can be but still be accepted, or 2) The authors are actual fools and it would be in the editor's best interest to ban them from submitting to the journal in the future.",
"label": ""
},
{
"extract": "I am, frankly, underwhelmed by the revisions. Most of the responses sound smooth, but really just written to avoid serious additional work.",
"label": "Unprofessional comment"
},
{
"extract": "I do not want to see the paper again.",
"label": "Unconstructive comment"
},
{
"extract": "I was left with the impression that the lid had been lifted off a big can of worms, but that the worms had not been picked out for proper dissection.",
"context": "By the end of the paper, I was left with the impression that the lid had been lifted off a big can of worms, but that the worms had not been picked out for proper dissection. Maybe it is unfair to expect that this could be achieved, due to the excessive number of worms involved in the matter.",
"label": "Unprofessional comment"
},
{
"extract": "This paper is absolutely ridiculous. It shouldn't be published anywhere and the author should not be encouraged to revise.",
"label": "Unprofessional comment"
},
{
"extract": "Finally, I have substantial criticisms, in addition to the disappointment of seeing hoary old chestnuts",
"label": "Unconstructive comment"
},
{
"extract": "Table X seems unnecessary given Figure Y. Indeed, Figure Y also seems unnecessary.",
"label": "Unconstructive comment"
},
{
"extract": "The English language ranks this manuscript among the top 5 worst manuscripts I have ever reviewed",
"label": "Unprofessional comment"
},
{
"extract": "There is no evidence to show this is the first paper to propose the idea.",
"label": "Unconstructive comment"
},
{
"extract": "The writing is not at school level",
"label": "Unconstructive comment"
},
{
"extract": "An exercise in feature manipulation, of the brainless kind",
"label": "Unprofessional comment"
},
{
"extract": "I apologize for this but frankly some parts read like a report of a high-school student on a scientific experiment.",
"label": "Unprofessional comment"
},
{
"extract": "There is no need to test these hypotheses. They have been tested a long time ago. It is in all textbooks.",
"label": "Unprofessional comment"
},
{
"extract": "This would seem to constitute the very minimum basic scientific requirement for attempting to publish a body of (unoriginal) data",
"label": "Unconstructive comment"
},
{
"extract": "The entire paper reads a bit like someone who has searched around the social scientific research literature without much authentic understanding of social science, social scientific research methodology, or statistical analyses",
"label": "Unprofessional comment"
},
{
"extract": "Which means that, as the saying goes, if their results are correct they cannot be new, and if they are new 'they cannot possibly be correct. Frankly, it is hard to say which is the case",
"label": "Unprofessional comment"
},
{
"extract": "I am not convinced if any clear real value of this research.",
"label": "Unconstructive comment"
},
{
"extract": "This [sentence] construction should be reserved for police procedurals and bad Mafia movies.",
"label": "Unprofessional comment"
},
{
"extract": "The authors are perpetuating misguided generalizations in the face of substantial experimental data to the contrary",
"label": "Unconstructive comment"
},
{
"extract": "There are also other points that have to be addressed, but considering the current state of the manuscript, I do not think it is makes sense to go into further detail.",
"label": "Unconstructive comment"
},
{
"extract": "It is very lengthy, full of mistakes, irrelevant information, and completely fails to attract readers.",
"label": "Unconstructive comment"
},
{
"extract": "Why chase a gene in this ridiculous organism?",
"label": "Unconstructive comment"
},
{
"extract": "Future work: The authors' personal research agenda is irrelevant here.",
"label": "Unprofessional comment"
},
{
"extract": "Line X. The sentence follows a bit of a Yoda-esque grammar",
"label": "Unprofessional comment"
},
{
"extract": "I just don't get the point of this",
"label": "Unconstructive comment"
},
{
"extract": "I suggest you consult a competent statistical advisor.",
"label": "Unprofessional comment"
},
{
"extract": "It is more of a blog post than a research article",
"label": "Unprofessional comment"
},
{
"extract": "The sum total is frustration with what I can only call cavalier treatment of promising material.",
"label": "Unprofessional comment"
},
{
"extract": "With the appropriate revisions these results could provide a very limited contribution to the field.",
"label": "Unconstructive comment"
},
{
"extract": "I have rarely read a more blown-up and annoying paper in the last couple of years than this hot-air balloon manuscript",
"label": "Unprofessional comment"
},
{
"extract": "This paper introduces tools to answer questions which it does not seem many people are interested in",
"label": "Unprofessional comment"
},
{
"extract": "In a nutshell, please cut out all the hype, show some integrity, and write a balanced paper.",
"label": "Unprofessional comment"
},
{
"extract": "The first problem is that the method - whatever it is and however it works - is insufficiently evaluated.",
"label": "Unconstructive comment"
},
{
"extract": "Since the paper is mathematically empty and, compared with the conference version, provides no new ideas or findings, in general, I see no reason why it should be published in a journal as well.",
"label": "Unprofessional comment"
},
{
"extract": "Figure 6. This figure is silly.",
"label": "Unprofessional comment"
},
{
"extract": "Various statements seem to be sweeping and inaccurate generalizations with little robust justification",
"label": "Unconstructive comment"
},
{
"extract": "The manuscript reads much like an unrevised masters level paper.",
"label": "Unprofessional comment"
},
{
"extract": "You do not use the empirical data for the analysis, but the empirical data uses you",
"label": "Unprofessional comment"
},
{
"extract": "The candidate demonstrates no understanding of the subject matter and his proposal title is misleading. Furthermore, his career prospects are unclear.",
"label": "Unprofessional comment"
},
{
"extract": "Since the manuscript is so lacking in all aspects, I won't bother going through it in detail.",
"label": "Unconstructive comment"
},
{
"extract": "The author does not exhibit adequate acquaintance with the subject under discussion, the scholarship on it, the structure of logical argument, or the writing of English.",
"label": "Unprofessional comment"
},
{
"extract": "Publishable, but why?",
"label": "Unconstructive comment"
},
{
"extract": "I believe that the authors have done scientific work, but in the current form of the paper it is impossible to judge it.",
"label": "Unprofessional comment"
},
{
"extract": "The color rainbow is pretty, but largely useless.",
"label": "Unconstructive comment"
},
{
"extract": "The authors report results from pages 16-26. This section reflects what I would brutally call 'death by figures'",
"label": "Unconstructive comment"
},
{
"extract": "I cannot possibly imagine what could have led the authors to believe that their paper was remotely interesting enough to submit for publication.",
"label": "Unprofessional comment"
},
{
"extract": "Usually climate studies do not show a good method for the proposed research. This is one of them.",
"label": "Unconstructive comment"
},
{
"extract": "This is starting to feel like a book report",
"label": "Unprofessional comment"
},
{
"extract": "If the editor somehow decides to accept this paper, they risk permanently destroying the credibility of this journal and its entire editorial board.",
"label": "Unprofessional comment"
},
{
"extract": "Right now, there is zero rationale for the study and zero reason to read the study.",
"label": "Unprofessional comment"
},
{
"extract": "Details of how important these effects are are missing. Reference X is entertaining but inadequate in this respect.",
"label": "Unconstructive comment"
},
{
"extract": "It is essentially an opinion piece that editorializes shamelessly about the superior methods of a recent paper in the first person",
"label": "Unprofessional comment"
},
{
"extract": "I have difficulties identifying the aim and added value of the present study to this topic.",
"label": "Unconstructive comment"
},
{
"extract": "The experiments are reasonable, but they fail the fundamental test of good science",
"label": "Unconstructive comment"
},
{
"extract": "I regret to inform you that our journal will not be able to publish your work. We contacted meanwhile 16 (sixteen!) reviewers of which 12 (twelve) did not respond positively (the others did not answer our queries).",
"label": "Unconstructive comment"
},
{
"extract": "Your proposed method should be compared with another method that introduced in a prestigious paper. [full review]",
"label": "Unconstructive comment"
},
{
"extract": "Appears to be on the perimeter of meaningful investigation.",
"label": "Unprofessional comment"
},
{
"extract": "The rest of the Introduction is just as badly done as the first paragraph so I will not continue",
"label": "Unprofessional comment"
},
{
"extract": "This article is on an interesting topic. Unfortunately there is no more positive to say about this manuscript.",
"label": "Unprofessional comment"
},
{
"extract": "The study is poorly conceived and inadequately conducted and the conclusions made by the authors do not necessarily follow from the results",
"label": "Unconstructive comment"
},
{
"extract": "It reads more like a diagnosis confirmed by a set of examples",
"label": "Unconstructive comment"
},
{
"extract": "Thus, there is nothing new in the manuscript that warrants publication in Science or most other scientific journals.",
"label": "Unconstructive comment"
},
{
"extract": "Recommendation: Publish elsewhere Comments: [none]",
"label": "Unprofessional comment"
},
{
"extract": "It is safe to say that the authors want to see their paper published more than I really want to reject it",
"label": "Unprofessional comment"
},
{
"extract": "The work is trivial, and there is no novelty in the work, the approach or the results. The authors do not solve anything and the implications in this context are quite possibly irrelevant.",
"label": "Unprofessional comment"
},
{
"extract": "I am sorry if I am missing something obvious here but this is not my area of work.",
"label": "Unprofessional comment"
},
{
"extract": "First, the paper is for a large part incomprehensible",
"label": "Unconstructive comment"
},
{
"extract": "The paper is presented as a rather undigestible and tortuous collection of disparate results",
"label": "Unconstructive comment"
},
{
"extract": "Such a prestigious journal can surely make better use of its limited space.",
"label": "Unconstructive comment"
},
{
"extract": "The paper comes with proofs, but - at a first glance - they seem to be more cute than useful.",
"label": "Unprofessional comment"
},
{
"extract": "It is hard to imagine researchers of this caliber being unaware of a half-century the field x, especially as concerns the bulk of what they have done in this paper.",
"label": "Unprofessional comment"
},
{
"extract": "I was really looking forward to reading this manuscript, however this enthusiasm soon waned.",
"label": "Unprofessional comment"
},
{
"extract": "You are trying to do too much and end up accomplishing too little. It is a collection of good ideas that do not add up to or advance to any meaningful conclusion.",
"label": "Unconstructive comment"
},
{
"extract": "I felt like I was reading a horror movie - the scene where our protagonist leaves the door unlocked and says \"let's split up\" to his/her comrades. and you know doom is surely going to reach our protagonist soon.",
"label": "Unprofessional comment"
},
{
"extract": "That's not possible to do without mind-reading, and there's nothing in the Method section about mind-reading methods",
"label": "Unprofessional comment"
},
{
"extract": "And the X reference is a straight-up drive-by citation, adding nothing except whatever luster he adds to the authors' claims.",
"label": "Unprofessional comment"
},
{
"extract": "By now, there are over 1,000 [articles on this topic], but these authors have not read a single one.",
"label": "Unprofessional comment"
},
{
"extract": "How does [redacted theory] explain your results? Or really, your underwhelming results?",
"label": "Unprofessional comment"
},
{
"extract": "While this study represents a substantial amount of work, it is not all that clear why the work was done.",
"label": "Unconstructive comment"
},
{
"extract": "I wish I could explain what is the purpose of the manuscript.",
"label": "Unconstructive comment"
},
{
"extract": "It seems that the author is simply engaged in proprietary phrase coining - advancing a new term for a well-researched phenomenon",
"label": "Unconstructive comment"
},
{
"extract": "The team has generated the kind of gaudy, brobdignagian dataset that makes it such a curious and exciting time",
"label": "Unconstructive comment"
},
{
"extract": "So many electrons worked so very very hard on this paper",
"label": "Unprofessional comment"
},
{
"extract": "The discussion is inappropriate and the new content is generally poorly written",
"label": "Unconstructive comment"
},
{
"extract": "We invited 18 reviewers and after quite a long time, only one reviewer had agreed. That review is now many days overdue and we don't expect it to be returned. Unfortunately at this point we have to assume there is a lack of interest and we don't want to keep your paper in review any longer.",
"label": "Unconstructive comment"
},
{
"extract": "It just doesn't make sense.",
"label": "Unconstructive comment"
},
{
"extract": "In a nutshell, I am not sure if the problem is indeed a challenge or just a fact that we have to live with, such as gravity or death, for which no solutions exist.",
"label": "Unconstructive comment"
},
{
"extract": "Moreover, it is unclear whether the effect is sufficiently important to warrant replication.",
"label": "Unconstructive comment"
},
{
"extract": "It is worth saying that I am not convinced that you contribute to the evidence base in this paper.",
"label": "Unconstructive comment"
},
{
"extract": "That's not how science is done.",
"label": "Unprofessional comment"
},
{
"extract": "The authors conclusions not only contradict their own data but also the laws of thermodynamics",
"label": "Unconstructive comment"
},
{
"extract": "I really don't like to be harsh in my reviews, but…",
"label": "Unconstructive comment"
},
{
"extract": "However I deplore the fact that this paper has been created at all",
"label": "Unprofessional comment"
},
{
"extract": "While I think there is good reason to have performed this work, it does make for unexciting reading.",
"label": "Unconstructive comment"
},
{
"extract": "Authors wanted to make title catchy but actually finished trivial title, a la 'Daily mail'",
"label": "Unprofessional comment"
},
{
"extract": "While the problem is a very important one for modern society, the topic and lessons are not of broad interest.",
"label": "Unconstructive comment"
},
{
"extract": "Line X; this is the only correct, sensible and interesting finding of the paper.",
"label": "Unprofessional comment"
},
{
"extract": "It feels a little bit like someone wanting to run a series of statistics.",
"label": "Unprofessional comment"
},
{
"extract": "Simply conducting the same analyses in a different data set does not equate novelty or impact to the field.",
"label": "Unconstructive comment"
},
{
"extract": "Are the '10 random reps' chosen at random?",
"label": "Unconstructive comment"
},
{
"extract": "The authors need to add a level of puzzlement to their interpretations",
"label": "Unconstructive comment"
},
{
"extract": "One wonders whether the analysis was an exercise in using a cannon to open an unlocked door.",
"label": "Unprofessional comment"
},
{
"extract": "This work is only a maths game.",
"label": "Unconstructive comment"
},
{
"extract": "Overall, I think this manuscript is a waste of time.",
"label": "Unprofessional comment"
},
{
"extract": "Moreover, it is very difficult to see the actual contribution this manuscript will have",
"label": "Unconstructive comment"
},
{
"extract": "The abstract is intriguing but confusing",
"label": "Unconstructive comment"
},
{
"extract": "I guess this proposal could be interesting, if you're interested in this obscure sect of biology",
"label": "Unprofessional comment"
},
{
"extract": "I don't understand thermodynamics.",
"label": "Unconstructive comment"
},
{
"extract": "A great deal of effort has been expended here, but to what end?",
"label": "Unconstructive comment"
},
{
"extract": "This paper is desperate. Please reject it completely and then block the author's email ID so they can't use the online system in the future.",
"label": "Unprofessional comment"
},
{
"extract": "The Discussion section of the paper is neither informative nor enlightening and is certainly theoretically questionably",
"label": "Unconstructive comment"
},
{
"extract": "Cite newer, relevant references, especially those published by X (20XX), and X (20XX). Best wishes, Dr. X, Associate Editor",
"label": "Unprofessional comment"
},
{
"extract": "Intermediary steps and the apologetics for [topic x] derived from an ahistorical cult and its author.",
"label": "Unprofessional comment"
},
{
"extract": "The team is very experienced. It [the paper] felt a bit less self referential than they often are",
"label": "Unprofessional comment"
},
{
"extract": "Sorry for our long silence, due to some perplexity on our side at reading your manuscript.",
"label": "Unprofessional comment"
},
{
"extract": "I recommend the publication even if I am not impressed",
"label": "Unconstructive comment"
},
{
"extract": "If the author is comfortable having his/her name on this paper, then I won't stand in the way of its publication.",
"label": "Unprofessional comment"
},
{
"extract": "I am impatient with this vague assertion.",
"label": "Unconstructive comment"
},
{
"extract": "The length of this review is occasioned by the density of error and misconceived arguments in this manuscript.",
"context": "The length of this review is occasioned by the density of error and misconceived arguments in this manuscript. As a service primarily to the authors I have decided to actually try to convey a sense of the extreme nature of the problems encumbering this submission.",
"label": "Unconstructive comment"
},
{
"extract": "Unfortunately, I cannot recommend this paper for publication because its contents violate the laws of physics",
"label": "Unprofessional comment"
},
{
"extract": "The authors are permitted to believe what they want to, but the data did not support 'important implications.'",
"label": "Unconstructive comment"
},
{
"extract": "However, the applicant seems to have run out of steam before he developed a detailed plan for the proposed research and then completed the proposal. This is unfortunate.",
"label": "Unprofessional comment"
},
{
"extract": "This book has more mistakes than a hound has fleas",
"label": "Unprofessional comment"
},
{
"extract": "I did not attempt to understand Figure 2 because there was no motivation given for it",
"label": "Unconstructive comment"
},
{
"extract": "It looks to be more of a chance for the authors to promote a product using a poorly constructed, non-replicable pilot study",
"label": "Unconstructive comment"
},
{
"extract": "In order to be able to publish this manuscript it need to be rewritten in the form of a scientific article",
"label": "Unprofessional comment"
},
{
"extract": "Through a streamlining of the argument, meaningful references to existing literature and a restriction to the essentials, the manuscript may still be saved",
"label": "Unconstructive comment"
},
{
"extract": "This sentence is so hard to digest it gave me reflux",
"label": "Unprofessional comment"
},
{
"extract": "Several books that are cited but there is no evidence that they have ever been studied and understood.",
"label": "Unprofessional comment"
},
{
"extract": "It is difficult from this reviewer's perspective to even call these studies.",
"label": "Unprofessional comment"
},
{
"extract": "The take home message has to be extracted with significant labor from a punishing set of figures with multiple bar graphs.",
"label": "Unconstructive comment"
},
{
"extract": "Suggesting much but saying nothing of import, the sort of balderdash that is in the vernacular often compared to the waste of certain male ruminants.",
"label": "Unprofessional comment"
},
{
"extract": "What, then, is the point of this manuscript, which presents no truly new data, methods, conclusions, or arguments? I would venture that it has no raison d'etre, and is neither novel nor helpful.",
"label": "Unprofessional comment"
},
{
"extract": "This may eventually be a cited paper.",
"label": "Unconstructive comment"
},
{
"extract": "Ugh. Read a book. This is grossly oversimplified, and not an appropriate statement for a scientific journal.",
"label": "Unprofessional comment"
},
{
"extract": "I would have preferred to read a meta-analysis",
"label": "Unconstructive comment"
},
{
"extract": "This article describes [XY], a research project investigating methods for educational game design. The paper is poorly written. [full review]",
"label": "Unconstructive comment"
},
{
"extract": "Even if other readers found it comprehensible, there is not even a proposed path to make [this model] into a modeling system.",
"label": "Unconstructive comment"
},
{
"extract": "The paper was so boring I fell asleep halfway through",
"label": "Unprofessional comment"