Datasets:

ArXiv:
License:
machelreid commited on
Commit
897da88
1 Parent(s): dbb47c7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md CHANGED
@@ -1,3 +1,25 @@
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
4
+ # M2D2: A Massively Multi-domain Language Modeling Dataset
5
+
6
+ Load the dataset as follows:
7
+ ```python
8
+ import datasets
9
+
10
+ dataset = datasets.load_dataset("machelreid/m2d2", "cs.CL") # replace cs.CL with the domain of your choice
11
+
12
+ print(dataset['train'][0]['text'])
13
+ ```
14
+ ## Domains
15
+ // TODO
16
+ ## Citation
17
+ Please cite this work if you found this data useful.
18
+ ```bib
19
+ @article{reid2022m2d2,
20
+ title = {M2D2: A Massively Multi-domain Language Modeling Dataset},
21
+ author = {Machel Reid and Victor Zhong and Suchin Gururangan and Luke Zettlemoyer},
22
+ year = {2022},
23
+ journal = {arXiv preprint arXiv: Arxiv-2210.07370}
24
+ }
25
+ ```