beyond commited on
Commit
ae53e77
1 Parent(s): d39dba3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md CHANGED
@@ -18,6 +18,24 @@ Containing more than **80 million pure \& clean** Chinese passages, without any
18
  文本长度大部分介于50\~200个汉字之间。\
19
  The passage length is approximately 50\~200 Chinese characters.
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  数据是基于[CLUE中文预训练语料集](https://github.com/CLUEbenchmark/CLUE)进行处理、过滤得到的。\
22
  This dataset is processed/filtered from the [CLUE pre-training corpus](https://github.com/CLUEbenchmark/CLUE).
23
 
 
18
  文本长度大部分介于50\~200个汉字之间。\
19
  The passage length is approximately 50\~200 Chinese characters.
20
 
21
+ 通过`datasets.load_dataset()`下载数据,会产生38个大小约340M的数据包,共约12GB,所以请确保有足够空间。\
22
+ Downloading the dataset will result in 38 data shards each of which is about 340M and 12GB in total. Make sure there's enough space in your device:)
23
+ ```
24
+ >>>
25
+ passage_dataset = load_dataset('beyond/chinese_clean_passages_80m')
26
+
27
+ <<<
28
+ Downloading data: 100%|█| 341M/341M [00:06<00:00, 52.0MB
29
+ Downloading data: 100%|█| 342M/342M [00:06<00:00, 54.4MB
30
+ Downloading data: 100%|█| 341M/341M [00:06<00:00, 49.1MB
31
+ Downloading data: 100%|█| 341M/341M [00:14<00:00, 23.5MB
32
+ Downloading data: 100%|█| 341M/341M [00:10<00:00, 33.6MB
33
+ Downloading data: 100%|█| 342M/342M [00:07<00:00, 43.1MB
34
+ ...(38 data shards)
35
+ ```
36
+
37
+ ---
38
+ Acknowledgment:\
39
  数据是基于[CLUE中文预训练语料集](https://github.com/CLUEbenchmark/CLUE)进行处理、过滤得到的。\
40
  This dataset is processed/filtered from the [CLUE pre-training corpus](https://github.com/CLUEbenchmark/CLUE).
41