PatrickHaller commited on
Commit
7a3637a
1 Parent(s): f4fc789

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -4
README.md CHANGED
@@ -26,8 +26,7 @@ configs:
26
 
27
  # Description
28
 
29
- This dataset is a sampled subset of the [Pile](https://huggingface.co/datasets/EleutherAI/pile) dataset.
30
- We used [DSIR](https://github.com/p-lambda/dsir) a data selection tool with importance resampling for subsampling.
31
 
32
  The subset sample distribution is:
33
 
@@ -57,12 +56,12 @@ The subset sample distribution is:
57
  ```
58
 
59
 
60
- The dataset contains ~100M words of text. This can be checked with:
61
 
62
  ```python
63
  from datasets import load_dataset
64
 
65
- ds = load_dataset("PatrickHaller/dsir-pile-10M-words")
66
 
67
  count = 0
68
  for row in ds["train"]:
 
26
 
27
  # Description
28
 
29
+ This dataset is a sampled subset of the [Pile](https://huggingface.co/datasets/EleutherAI/pile) dataset.
 
30
 
31
  The subset sample distribution is:
32
 
 
56
  ```
57
 
58
 
59
+ The dataset contains ~10M words of text. This can be checked with:
60
 
61
  ```python
62
  from datasets import load_dataset
63
 
64
+ ds = load_dataset("PatrickHaller/pile-10M-words")
65
 
66
  count = 0
67
  for row in ds["train"]: