Commit
•
9062cd2
1
Parent(s):
227f367
Explain difference between raw/non-raw variants
Browse filesExplain difference between raw/non-raw variants.
README.md
CHANGED
@@ -135,6 +135,12 @@ Compared to the preprocessed version of Penn Treebank (PTB), WikiText-2 is over
|
|
135 |
and numbers - all of which are removed in PTB. As it is composed of full articles, the dataset is well suited for models
|
136 |
that can take advantage of long term dependencies.
|
137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
### Supported Tasks and Leaderboards
|
139 |
|
140 |
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
|
|
135 |
and numbers - all of which are removed in PTB. As it is composed of full articles, the dataset is well suited for models
|
136 |
that can take advantage of long term dependencies.
|
137 |
|
138 |
+
Each subset comes in two different variants:
|
139 |
+
- Raw (for character level work) contain the raw tokens, before the addition of the <unk> (unknown) tokens.
|
140 |
+
- Non-raw (for word level work) contain only the tokens in their vocabulary (wiki.train.tokens, wiki.valid.tokens, and wiki.test.tokens).
|
141 |
+
The out-of-vocabulary tokens have been replaced with the the <unk> token.
|
142 |
+
|
143 |
+
|
144 |
### Supported Tasks and Leaderboards
|
145 |
|
146 |
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|