RomanCast commited on
Commit
7349ec2
1 Parent(s): 1803a2d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md CHANGED
@@ -40,4 +40,52 @@ dataset_info:
40
  num_examples: 1000
41
  download_size: 241234
42
  dataset_size: 261948
 
 
43
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  num_examples: 1000
41
  download_size: 241234
42
  dataset_size: 261948
43
+ language:
44
+ - en
45
  ---
46
+
47
+ # WikiSpell
48
+
49
+ ## Description
50
+ This dataset is a **custom implementation** of the WikiSpell dataset introduced in [Character-Aware Models Improve Visual Text Rendering](https://arxiv.org/pdf/2212.10562.pdf) by Liu et al. (2022).
51
+
52
+ Similarly to the original WikiSpell dataset, the training set is composed of 5000 words taken uniformly from the 50% least common Wiktionary words, and 5000 words sampled according to their frequencies taken from the 50% most common Wiktionary words.
53
+
54
+ Contrary to the original Wiktionary, we compute the frequency of the words using the first 100k sentences from OpenWebText ([Skylion007/openwebtext](https://huggingface.co/datasets/Skylion007/openwebtext)) instead of mC4.
55
+
56
+ ## Usage
57
+ This dataset is used for testing spelling in Large Language Models. To do so, the labels should be computed using the following:
58
+
59
+ ```python
60
+ sample = ds["train"][0]
61
+ label = " ".join(sample["text"])
62
+ ```
63
+
64
+ **They are not included in the dataset.**
65
+
66
+ ## Citation
67
+
68
+ Please cite the original paper introducing WikiSpell if you're using this dataset:
69
+
70
+ ```
71
+ @inproceedings{liu-etal-2023-character,
72
+ title = "Character-Aware Models Improve Visual Text Rendering",
73
+ author = "Liu, Rosanne and
74
+ Garrette, Dan and
75
+ Saharia, Chitwan and
76
+ Chan, William and
77
+ Roberts, Adam and
78
+ Narang, Sharan and
79
+ Blok, Irina and
80
+ Mical, Rj and
81
+ Norouzi, Mohammad and
82
+ Constant, Noah",
83
+ booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
84
+ month = jul,
85
+ year = "2023",
86
+ address = "Toronto, Canada",
87
+ publisher = "Association for Computational Linguistics",
88
+ url = "https://aclanthology.org/2023.acl-long.900",
89
+ pages = "16270--16297",
90
+ }
91
+ ```