sileod commited on
Commit
e89effe
·
1 Parent(s): 2fdb40c

Update blimp_classification.py

Browse files
Files changed (1) hide show
  1. blimp_classification.py +7 -1
blimp_classification.py CHANGED
@@ -41,6 +41,12 @@ _Blimp_CITATION = r"""
41
  eprint = {https://doi.org/10.1162/tacl_a_00321},
42
  abstract = { We introduce The Benchmark of Linguistic Minimal Pairs (BLiMP),1 a challenge set for evaluating the linguistic knowledge of language models (LMs) on major grammatical phenomena in English. BLiMP consists of 67 individual datasets, each containing 1,000 minimal pairs—that is, pairs of minimally different sentences that contrast in grammatical acceptability and isolate specific phenomenon in syntax, morphology, or semantics. We generate the data according to linguist-crafted grammar templates, and human aggregate agreement with the labels is 96.4\%. We evaluate n-gram, LSTM, and Transformer (GPT-2 and Transformer-XL) LMs by observing whether they assign a higher probability to the acceptable sentence in each minimal pair. We find that state-of-the-art models identify morphological contrasts related to agreement reliably, but they struggle with some subtle semantic and syntactic phenomena, such as negative polarity items and extraction islands. }
43
  }
 
 
 
 
 
 
44
  """
45
 
46
  _Blimp_DESCRIPTION = """\
@@ -51,7 +57,7 @@ DATA_URL = "https://www.dropbox.com/s/28s8qj97nuiwyoh/blimp.zip?dl=1"
51
 
52
 
53
  def get_labels(task):
54
- return ["acceptable", "unacceptable"]
55
 
56
 
57
  class BlimpConfig(datasets.BuilderConfig):
 
41
  eprint = {https://doi.org/10.1162/tacl_a_00321},
42
  abstract = { We introduce The Benchmark of Linguistic Minimal Pairs (BLiMP),1 a challenge set for evaluating the linguistic knowledge of language models (LMs) on major grammatical phenomena in English. BLiMP consists of 67 individual datasets, each containing 1,000 minimal pairs—that is, pairs of minimally different sentences that contrast in grammatical acceptability and isolate specific phenomenon in syntax, morphology, or semantics. We generate the data according to linguist-crafted grammar templates, and human aggregate agreement with the labels is 96.4\%. We evaluate n-gram, LSTM, and Transformer (GPT-2 and Transformer-XL) LMs by observing whether they assign a higher probability to the acceptable sentence in each minimal pair. We find that state-of-the-art models identify morphological contrasts related to agreement reliably, but they struggle with some subtle semantic and syntactic phenomena, such as negative polarity items and extraction islands. }
43
  }
44
+ @inproceedings{sileo2021analysis,
45
+ title={Analysis and Prediction of NLP Models Via Task Embeddings},
46
+ author={Damien Sileo and Marie-Francine Moens},
47
+ booktitle = "Proceedings of the 12th Language Resources and Evaluation Conference",
48
+ year={2022},
49
+ }
50
  """
51
 
52
  _Blimp_DESCRIPTION = """\
 
57
 
58
 
59
  def get_labels(task):
60
+ return ["unacceptable","acceptable"]
61
 
62
 
63
  class BlimpConfig(datasets.BuilderConfig):