KaraKaraWitch commited on
Commit
6b678b3
1 Parent(s): 84d85bb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -5
README.md CHANGED
@@ -29,7 +29,8 @@ pretty_name: SuperWIKI Cleaned
29
  > - [Tom Scott](https://www.youtube.com/watch?v=ALy6e7GbDRQ&t=90s)
30
  >
31
 
32
- SuperWIKI Cleaned is a focused dataset on wikipedia articles. This dataset is derived from raw files provided in [SuperWIKI](https://huggingface.co/datasets/RyokoExtra/SuperWIKI)
 
33
 
34
  ### Supported Tasks and Leaderboards
35
 
@@ -41,15 +42,41 @@ The dataset is generally used for Language Modeling.
41
 
42
  ## Dataset Structure
43
 
44
- All the files are located in gzip'd jsonl files..
45
 
46
  ### Data Instances
47
 
48
- Refer to [Wikimedia Enterprise (API Data Dictionary)](https://enterprise.wikimedia.com/docs/data-dictionary/) for more data instances.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
  ### Data Fields
51
 
52
- <TBD>
 
 
 
 
 
53
 
54
  #### Q-Score Distribution
55
 
@@ -99,7 +126,8 @@ No data splits were done.
99
 
100
  ### Discussion of Biases
101
 
102
- [More Information Needed]
 
103
 
104
  ### Other Known Limitations
105
 
 
29
  > - [Tom Scott](https://www.youtube.com/watch?v=ALy6e7GbDRQ&t=90s)
30
  >
31
 
32
+ SuperWIKI Cleaned is a focused dataset on wikipedia articles.
33
+ This dataset is derived from raw files provided in [SuperWIKI](https://huggingface.co/datasets/RyokoExtra/SuperWIKI).
34
 
35
  ### Supported Tasks and Leaderboards
36
 
 
42
 
43
  ## Dataset Structure
44
 
45
+ All the files are located in gzip'd jsonl files.
46
 
47
  ### Data Instances
48
 
49
+ Refer to this sample to see all the fields:
50
+
51
+ ```json
52
+ {
53
+ "text": "|Abbreviation||WAY|\n|Formation||1966|\n|Headquarters||Wat Ananda Metyarama Thai Buddhist Temple|\nPresident\n|Phanom Sinth Suwanarat|\n|Affiliations||Wat Ananda Metyarama Thai Buddhist Temple|\n|Website||http://way.org.sg|\nThe\n**Wat Ananda Youth** is a Buddhist youth organisation... <TRUNCATED>",
54
+ "title": "Wat Ananda Youth",
55
+ "url": "https://en.wikipedia.org/wiki/Wat_Ananda_Youth",
56
+ "issues": [
57
+ "template:original research"
58
+ ],
59
+ "selectors": [
60
+ "table.box-Original_research"
61
+ ],
62
+ "templates": [
63
+ "template:reflist",
64
+ "template:infobox organization",
65
+ "template:cite web",
66
+ "template:original research",
67
+ "template:main"
68
+ ]
69
+ }
70
+ ```
71
 
72
  ### Data Fields
73
 
74
+ `text`: The HTML Text (After pre-processing) from SuperWIKI converted to markdown with links removed and formatting kept.
75
+ `title`: The title of the wikipedia article.
76
+ `issues`: A list of custom list of templates that has been removed from the html (ala, pre-processing) for the article.
77
+ `selectors`: `issues` are based on templates, which may have multiple templates but mean the same thing.
78
+ In that case, the selectors provide a unduplicated css class selectors that were used for the article. (`Template:Few sources` is the same as `Template:More citations needed` for example.)
79
+ `templates`: Used for debugging but are all the templates found in the article.
80
 
81
  #### Q-Score Distribution
82
 
 
126
 
127
  ### Discussion of Biases
128
 
129
+ This article removes all "Notices" from all articles to provide a cleaner version of wikipedia.
130
+ You should consider adding flags back into the dataset if you want to tell the user about the potential issues.
131
 
132
  ### Other Known Limitations
133