KaraKaraWitch commited on
Commit
d494331
·
1 Parent(s): 15bc412

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -20
README.md CHANGED
@@ -13,6 +13,9 @@ configs:
13
  - config_name: default
14
  default: true
15
  data_files:
 
 
 
16
  - split: lang50
17
  path:
18
  - "*-lang50-*.json.gz"
@@ -60,33 +63,59 @@ Refer to this sample to see all the fields:
60
 
61
  ```json
62
  {
63
- "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>",
64
- "title": "Wat Ananda Youth",
65
- "url": "https://en.wikipedia.org/wiki/Wat_Ananda_Youth",
66
- "issues": [
67
- "template:original research"
68
- ],
69
- "selectors": [
70
- "table.box-Original_research"
71
- ],
72
- "templates": [
73
- "template:reflist",
74
- "template:infobox organization",
75
- "template:cite web",
76
- "template:original research",
77
- "template:main"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  ]
79
  }
80
  ```
81
 
82
  ### Data Fields
83
 
84
- `text`: The HTML Text (After pre-processing) from SuperWIKI converted to markdown with links removed and formatting kept.
 
85
  `title`: The title of the wikipedia article.
86
- `issues`: A list of custom list of templates that has been removed from the html (ala, pre-processing) for the article.
87
- `selectors`: `issues` are based on templates, which may have multiple templates but mean the same thing.
88
- 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.)
89
- `templates`: Used for debugging but are all the templates found in the article.
 
 
 
 
90
 
91
  #### Q-Score Distribution
92
 
 
13
  - config_name: default
14
  default: true
15
  data_files:
16
+ - split: lang50NightShade
17
+ path:
18
+ - "*-lang50NightShade-*.json.gz"
19
  - split: lang50
20
  path:
21
  - "*-lang50-*.json.gz"
 
63
 
64
  ```json
65
  {
66
+ "id": 35507,
67
+ "text": "In computer network communications, the **HTTP 404**, **404 not found**, **404**, **404 error**, **page not found** or **file not found** error message is a hypertext transfer protocol (HTTP) standard response code, to indicate that the browser was able to communicate with a given server, but the server could not find what was requested. The error may also be used when a server does not wish to disclose whether it has the requested information.<TRUNCATED>",
68
+ "title": "HTTP 404",
69
+ "url": "https://en.wikipedia.org/wiki/HTTP_404",
70
+ "filters": {
71
+ "issues": [],
72
+ "selectors": [],
73
+ "templates": [
74
+ "template:http",
75
+ "template:redirect",
76
+ "template:use dmy dates",
77
+ "template:cite book",
78
+ "template:portal",
79
+ "template:anchor",
80
+ "template:pp-move-indef",
81
+ "template:cite news",
82
+ "template:reflist",
83
+ "template:short description",
84
+ "template:citation",
85
+ "template:error messages",
86
+ "template:pp-semi-indef",
87
+ "template:cite journal",
88
+ "template:cite web"
89
+ ],
90
+ "rituals": []
91
+ },
92
+ "infobox_html": [],
93
+ "figures_dict": [
94
+ {
95
+ "file_url": "./File:Wikipedia_404_Page.png",
96
+ "caption": "English Wikipedia's 404 Page"
97
+ },
98
+ {
99
+ "file_url": "./File:Wikimedia_error_404.png",
100
+ "caption": "The Wikimedia 404 message"
101
+ }
102
  ]
103
  }
104
  ```
105
 
106
  ### Data Fields
107
 
108
+ `id`: The article ID in question
109
+ `text`: The HTML Text (After post-processing) from SuperWIKI converted to markdown with links removed and formatting (Bold, italics) kept.
110
  `title`: The title of the wikipedia article.
111
+ `url`: The URL of the article.
112
+ `filters`: Metadata of filters found/used in the dataset.
113
+ - `issues`: A list of custom list of templates that has been removed from the html (ala, pre-processing) for the article.
114
+ - `selectors`: `issues` are based on templates, which may have multiple templates but mean the same thing. 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.)
115
+ - `rituals`: List of "Rituals" used to remove even more "Issue" templates. If not present, this field is empty.
116
+ - `templates`: Used for debugging but are all the templates found in the article.
117
+ `infobox_html`: A list of side infoboxes that ae extracted out from the text.
118
+ `figures_dict`: A list of figures used in the article. Again, extracted out from the text.
119
 
120
  #### Q-Score Distribution
121