File size: 24,085 Bytes
6fa4bc9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
    "paper_id": "2020",
    "header": {
        "generated_with": "S2ORC 1.0.0",
        "date_generated": "2023-01-19T07:13:25.093007Z"
    },
    "title": "Emily Alsentzer, MIT (USA) Amittai Axelrod, DiDi Labs (USA) William Boag, MIT (USA) Anneke Buffone, Facebook (USA) Aleksandr Drozd, RIKEN (Japan)",
    "authors": [
        {
            "first": "Anna",
            "middle": [],
            "last": "Rogers",
            "suffix": "",
            "affiliation": {},
            "email": ""
        },
        {
            "first": "Allyson",
            "middle": [],
            "last": "Ettinger",
            "suffix": "",
            "affiliation": {},
            "email": ""
        },
        {
            "first": "Matthew",
            "middle": [
                "B A"
            ],
            "last": "Mcdermott",
            "suffix": "",
            "affiliation": {},
            "email": ""
        },
        {
            "first": "Rada",
            "middle": [],
            "last": "Mihalcea",
            "suffix": "",
            "affiliation": {},
            "email": ""
        }
    ],
    "year": "",
    "venue": null,
    "identifiers": {},
    "abstract": "",
    "pdf_parse": {
        "paper_id": "2020",
        "_pdf_hash": "",
        "abstract": [],
        "body_text": [
            {
                "text": "Publication of negative results is difficult in most fields, and the current focus on benchmarkdriven performance improvement exacerbates this situation and implicitly discourages hypothesis-driven research. As a result, the development of NLP models often devolves into a product of tinkering and tweaking, rather than science. Furthermore, it increases the time, effort, and carbon emissions spent on developing and tuning models, as the researchers have little opportunity to learn from what has already been tried and failed.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "Historically, this tendency is hard to combat. ACL 2010 invited negative results as a special type of research paper submissions 1 , but received too few submissions and did not continue with it. The Journal for Interesting Negative Results in NLP and ML 2 has only produced one issue in 2008.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "However, the tide may be turning. The first iteration of the Workshop on Insights from Negative Results attracted 35 submissions and 11 presentation requests for papers accepted to \"Findings of EMNLP\". Moreover, we are not alone: an independent workshop \"I can't believe it's not better!\" is held at NeurIPS 2020 3 .",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "We invited submissions with many kinds of negative results, with the hope that they could yield useful insights and provide a much-needed reality check on the successes of deep learning models in NLP. In particular, we solicited the following types of contributions:",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "\u2022 broadly applicable recommendations for training/fine-tuning, especially if X that didn't work is something that many practitioners would think reasonable to try, and if the demonstration of X's failure is accompanied by some explanation/hypothesis;",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "\u2022 ablation studies of components in previously proposed models, showing that their contributions are different from what was initially reported;",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "\u2022 datasets or probing tasks showing that previous approaches do not generalize to other domains or language phenomena;",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "\u2022 trivial baselines that work suspiciously well for a given task/dataset;",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "\u2022 cross-lingual studies showing that a technique X is only successful for a certain language or language family;",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "\u2022 experiments on (in)stability of the previously published results due to hardware, random initializations, preprocessing pipeline components, etc;",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "\u2022 theoretical arguments and/or proofs for why X should not be expected to work.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "In terms of topics, 15 papers from our submission pool discussed \"great ideas that didn't work\", 12 dealt with the issues of generalizability, 5 were on the topic of \"right for the wrong reasons\", and 2 more papers focused on reproducibility issues. We accepted 18 short papers (51.4% acceptance rate) and granted 5 presentation requests for Findings papers.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "We hope that this event will be the first of many reality-check discussions on progress in NLP. If we do not talk about things that do not work, it is harder to see what the biggest problems are and where the community effort is the most needed. ",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": null
            },
            {
                "text": "https://mirror.aclweb.org/acl2010/papers.html 2 http://jinr.site.uottawa.ca/ 3 https://i-cant-believe-its-not-better.github.io/",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "",
                "sec_num": null
            }
        ],
        "back_matter": [],
        "bib_entries": {
            "BIBREF0": {
                "ref_id": "b0",
                "title": "Knowledge Graphs be used to Answer Boolean Questions? A. It's complicated! Daria Dzendzik, Carl Vogel and Jennifer Foster",
                "authors": [
                    {
                        "first": "Q",
                        "middle": [],
                        "last": "Can",
                        "suffix": ""
                    }
                ],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Q. Can Knowledge Graphs be used to Answer Boolean Questions? A. It's complicated! Daria Dzendzik, Carl Vogel and Jennifer Foster . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6",
                "links": null
            },
            "BIBREF1": {
                "ref_id": "b1",
                "title": "How Far Can We Go with Data Selection? A Case Study on Semantic Sequence Tagging Tasks Samuel Louvan and Bernardo Magnini",
                "authors": [],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "How Far Can We Go with Data Selection? A Case Study on Semantic Sequence Tagging Tasks Samuel Louvan and Bernardo Magnini . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15",
                "links": null
            },
            "BIBREF2": {
                "ref_id": "b2",
                "title": "Evaluating the Effectiveness of Efficient Neural Architecture Search for Sentence-Pair Tasks Ansel MacLaughlin",
                "authors": [
                    {
                        "first": "Jwala",
                        "middle": [],
                        "last": "Dhamala",
                        "suffix": ""
                    },
                    {
                        "first": "Anoop",
                        "middle": [],
                        "last": "Kumar",
                        "suffix": ""
                    },
                    {
                        "first": "Sriram",
                        "middle": [],
                        "last": "Venkatapathy",
                        "suffix": ""
                    },
                    {
                        "first": "Ragav",
                        "middle": [],
                        "last": "Venkatesan",
                        "suffix": ""
                    },
                    {
                        "first": "Rahul",
                        "middle": [],
                        "last": "Gupta",
                        "suffix": ""
                    },
                    {
                        "first": ".",
                        "middle": [
                            "."
                        ],
                        "last": "",
                        "suffix": ""
                    }
                ],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Evaluating the Effectiveness of Efficient Neural Architecture Search for Sentence-Pair Tasks Ansel MacLaughlin, Jwala Dhamala, Anoop Kumar, Sriram Venkatapathy, Ragav Venkatesan and Rahul Gupta . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22",
                "links": null
            },
            "BIBREF3": {
                "ref_id": "b3",
                "title": "Which Matters Most? Comparing the Impact of Concept and Document Relationships in Topic Models Silvia Terragni",
                "authors": [
                    {
                        "first": "Debora",
                        "middle": [],
                        "last": "Nozza",
                        "suffix": ""
                    },
                    {
                        "first": "Elisabetta",
                        "middle": [],
                        "last": "Fersini",
                        "suffix": ""
                    },
                    {
                        "first": ".",
                        "middle": [
                            "."
                        ],
                        "last": "Messina Enza",
                        "suffix": ""
                    }
                ],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Which Matters Most? Comparing the Impact of Concept and Document Relationships in Topic Models Silvia Terragni, Debora Nozza, Elisabetta Fersini and Messina Enza . . . . . . . . . . . . . . . . . . . . . . . . . 32",
                "links": null
            },
            "BIBREF4": {
                "ref_id": "b4",
                "title": "On Task-Level Dialogue Composition of Generative Transformer Model Prasanna Parthasarathi, Sharan Narang and",
                "authors": [],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "On Task-Level Dialogue Composition of Generative Transformer Model Prasanna Parthasarathi, Sharan Narang and Arvind Neelakantan . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41",
                "links": null
            },
            "BIBREF5": {
                "ref_id": "b5",
                "title": "How Effectively Can Machines Defend Against Machine-Generated Fake News? An Empirical Study Meghana Moorthy Bhat and Srinivasan Parthasarathy",
                "authors": [],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "How Effectively Can Machines Defend Against Machine-Generated Fake News? An Empirical Study Meghana Moorthy Bhat and Srinivasan Parthasarathy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47",
                "links": null
            },
            "BIBREF6": {
                "ref_id": "b6",
                "title": "Label Propagation-Based Semi-Supervised Learning for Hate Speech Classification Ashwin Geet D",
                "authors": [
                    {
                        "first": "'",
                        "middle": [],
                        "last": "Sa",
                        "suffix": ""
                    },
                    {
                        "first": "Irina",
                        "middle": [],
                        "last": "Illina",
                        "suffix": ""
                    },
                    {
                        "first": "Dominique",
                        "middle": [],
                        "last": "Fohr",
                        "suffix": ""
                    },
                    {
                        "first": "Dietrich",
                        "middle": [],
                        "last": "Klakow",
                        "suffix": ""
                    },
                    {
                        "first": "Dana",
                        "middle": [
                            ". . . . ."
                        ],
                        "last": "Ruiter",
                        "suffix": ""
                    }
                ],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Label Propagation-Based Semi-Supervised Learning for Hate Speech Classification Ashwin Geet D'Sa, Irina Illina, Dominique Fohr, Dietrich Klakow and Dana Ruiter . . . . . . . . . . . 53",
                "links": null
            },
            "BIBREF7": {
                "ref_id": "b7",
                "title": "Layout-Aware Text Representations Harm Clustering Documents by Type Catherine Finegan-Dollak and",
                "authors": [],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Layout-Aware Text Representations Harm Clustering Documents by Type Catherine Finegan-Dollak and Ashish Verma . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59",
                "links": null
            },
            "BIBREF8": {
                "ref_id": "b8",
                "title": "An Analysis of Capsule Networks for Part of Speech Tagging in High-and Low-resource Scenarios Andrew Zupon",
                "authors": [],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "An Analysis of Capsule Networks for Part of Speech Tagging in High-and Low-resource Scenarios Andrew Zupon, Faiz Rafique and Mihai Surdeanu . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65",
                "links": null
            },
            "BIBREF9": {
                "ref_id": "b9",
                "title": "Can Knowledge Graph Embeddings Tell Us What Fact-checked Claims Are About? Valentina Beretta",
                "authors": [],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Can Knowledge Graph Embeddings Tell Us What Fact-checked Claims Are About? Valentina Beretta, S\u00e9bastien Harispe, Katarina Boland, Luke Lo Seen, Konstantin Todorov and",
                "links": null
            },
            "BIBREF11": {
                "ref_id": "b11",
                "title": "Do Transformers Dream of Inference, or Can Pretrained Generative Models Learn Implicit Inferential Rules? Zhengzhong Liang and",
                "authors": [],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Do Transformers Dream of Inference, or Can Pretrained Generative Models Learn Implicit Inferential Rules? Zhengzhong Liang and Mihai Surdeanu . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75",
                "links": null
            },
            "BIBREF12": {
                "ref_id": "b12",
                "title": "Counterfactually-Augmented SNLI Training Data Does Not Yield Better Generalization Than Unaugmented Data William Huang",
                "authors": [
                    {
                        "first": "Haokun",
                        "middle": [],
                        "last": "Liu",
                        "suffix": ""
                    },
                    {
                        "first": "Samuel",
                        "middle": [
                            "R"
                        ],
                        "last": "Bowman",
                        "suffix": ""
                    },
                    {
                        "first": ".",
                        "middle": [
                            "."
                        ],
                        "last": "",
                        "suffix": ""
                    }
                ],
                "year": null,
                "venue": "",
                "volume": "87",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Counterfactually-Augmented SNLI Training Data Does Not Yield Better Generalization Than Unaug- mented Data William Huang, Haokun Liu and Samuel R. Bowman . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 NMF Ensembles? Not for Text Summarization! Alka Khurana and Vasudha Bhatnagar . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87",
                "links": null
            },
            "BIBREF13": {
                "ref_id": "b13",
                "title": "93 HINT3: Raising the bar for Intent Detection in the Wild Gaurav Arora",
                "authors": [],
                "year": null,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "If You Build Your Own NER Scorer, Non-replicable Results Will Come Constantine Lignos and Marjan Kamyab . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93 HINT3: Raising the bar for Intent Detection in the Wild Gaurav Arora, Chirag Jain, Manas Chaturvedi and Krupal Modi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99",
                "links": null
            },
            "BIBREF16": {
                "ref_id": "b16",
                "title": "15 Thematic session: representation learning 8:15-8:45 Thematic session: dialogue",
                "authors": [
                    {
                        "first": "Program",
                        "middle": [],
                        "last": "Thursday",
                        "suffix": ""
                    }
                ],
                "year": 2020,
                "venue": "Northeastern University) Negative results yield interesting questions, or: a bunch of stuff that didn't work",
                "volume": "8",
                "issue": "",
                "pages": "15--16",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Program Thursday, November 19, 2020 7:00-7:15 Opening remarks 7:15-8:15 Invited talk: Rada Mihalcea (University of Michigan) The ups and downs of word embeddings 8:45-9:15 Thematic session: representation learning 8:15-8:45 Thematic session: dialogue 9:15-10:00 Social break / meal time 10:00-11:00 Invited talk: Byron C. Wallace (Northeastern University) Negative results yield interesting questions, or: a bunch of stuff that didn't work 11:00-11:30 Thematic session: question answering 11:30-12:00 Thematic session: natural language inference 12:00-12:30 Thematic session: lessons learned the hard way 12:30-13:00 Social break / meal time 13:00-14:00 Interactive orals 14:00-14:45 Panel discussion 14:45-15:00 Breakout 15:00-15:15 Closing remarks 15:15-16",
                "links": null
            }
        },
        "ref_entries": {
            "TABREF0": {
                "num": null,
                "content": "<table/>",
                "type_str": "table",
                "html": null,
                "text": "Domain adaptation challenges of BERT in tokenization and sub-word representations of Out-of-Vocabulary wordsAnmol Nayak, Hariprasad Timmapathini, Karthikeyan Ponnalagu and Vijendran Gopalan Venkoparao"
            }
        }
    }
}