akkiisfrommars commited on
Commit
c05a7f9
·
verified ·
1 Parent(s): 9a80558

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -26
README.md CHANGED
@@ -1,26 +1,72 @@
1
- ---
2
- license: cc-by-sa-3.0
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- dataset_info:
9
- features:
10
- - name: id
11
- dtype: string
12
- - name: title
13
- dtype: string
14
- - name: text
15
- dtype: string
16
- - name: url
17
- dtype: string
18
- - name: timestamp
19
- dtype: string
20
- splits:
21
- - name: train
22
- num_bytes: 13814839212
23
- num_examples: 2867029
24
- download_size: 7656687519
25
- dataset_size: 13814839212
26
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc-by-sa-3.0
5
+ tags:
6
+ - treecorpus
7
+ - treecorpuscleaned
8
+ - wikipedia
9
+ - encyclopedia
10
+ - knowledge-base
11
+ - factual-knowledge
12
+ - training-data
13
+ - conversational-ai
14
+ - nlp
15
+ - language-model
16
+ - text-corpus
17
+ - qa-dataset
18
+ - structured-data
19
+ - clean-text
20
+ pretty_name: 'TreeCorpusCleaned: Basic Wikipedia Text Cleanup for AI Models'
21
+ size_categories:
22
+ - 10M<n<100M
23
+ ---
24
+
25
+ # TreeCorpusCleaned
26
+
27
+ TreeCorpusCleaned is a modestly improved version of the TreeCorpus dataset with some additional basic cleaning to help reduce Wikipedia markup artifacts. This dataset provides a slightly cleaner version of Wikipedia content for training AI models.
28
+
29
+ ## Dataset Statistics
30
+
31
+ - **Size**: 26.27 GB (26,272,580,250 bytes)
32
+ - **Examples**: 2,882,766 articles
33
+ - **Download Size**: 13.33 GB (13,326,529,312 bytes)
34
+ - **Language**: English
35
+
36
+ ## Data Structure
37
+
38
+ Each entry in the dataset contains:
39
+ - `id` (string): Unique Wikipedia article identifier
40
+ - `title` (string): Article title
41
+ - `text` (string): Text with basic additional cleanup
42
+ - `url` (string): Source Wikipedia URL
43
+ - `timestamp` (string): Processing timestamp
44
+
45
+ ## Basic Additional Cleaning
46
+
47
+ TreeCorpusCleaned includes some simple improvements over the original TreeCorpus:
48
+
49
+ - **Basic Reference Cleanup**: Additional removal of common reference markers
50
+ - **Simple Template Handling**: Some extra template cleanup
51
+ - **Formatting Standardization**: Basic text formatting standardization
52
+
53
+ ## Usage
54
+
55
+ This dataset is suitable for:
56
+ - Training language models with slightly cleaner Wikipedia text
57
+ - NLP tasks that benefit from reduced markup artifacts
58
+ - Projects requiring basic preprocessing of Wikipedia content
59
+
60
+ ## License and Citation
61
+
62
+ TreeCorpusCleaned is derived from Wikipedia content available under the CC BY-SA 3.0 license. When using this dataset, please provide appropriate attribution to both this dataset and Wikipedia.
63
+
64
+ ## Dataset Configuration
65
+
66
+ The dataset is configured with a default split:
67
+ - Split name: train
68
+ - Data files pattern: data/train-*
69
+
70
+ ## Creation Process
71
+
72
+ TreeCorpusCleaned was created by applying some additional basic cleaning steps to the original TreeCorpus dataset to remove common artifacts and improve text quality.