sileod commited on
Commit
0bb1d2f
1 Parent(s): 5aadf1c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md CHANGED
@@ -1,3 +1,30 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # Dataset for evaluation of (zero-shot) discourse marker prediction with language models
6
+
7
+ This is the Big-Bench version of our language-based movie recommendation dataset
8
+
9
+ <https://github.com/google/BIG-bench/tree/main/bigbench/benchmark_tasks/discourse_marker_prediction>
10
+
11
+ GPT2 has to zero-shot 15% accuracy with on this multiple-choice task based on language modeling perplexity. As a comparison, a fully supervised model, trained with 10k examples per marker with ROBERTA and default hyperparameters with one epoch, leads to an accuracy of 30% with 174 possible markers. This shows that this task is hard for GPT2 and that the model didn't memorize the discourse markers, but that high accuracies are still possible.
12
+
13
+ # Citation
14
+ ```
15
+ @inproceedings{sileo-etal-2019-mining,
16
+ title = "Mining Discourse Markers for Unsupervised Sentence Representation Learning",
17
+ author = "Sileo, Damien and
18
+ Van De Cruys, Tim and
19
+ Pradel, Camille and
20
+ Muller, Philippe",
21
+ booktitle = "Proceedings of the 2019 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers)",
22
+ month = jun,
23
+ year = "2019",
24
+ address = "Minneapolis, Minnesota",
25
+ publisher = "Association for Computational Linguistics",
26
+ url = "https://aclanthology.org/N19-1351",
27
+ doi = "10.18653/v1/N19-1351",
28
+ pages = "3477--3486",
29
+ }
30
+ ```