Commit ·
d494331
1
Parent(s): 15bc412
Update README.md
Browse files
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 |
-
"
|
| 64 |
-
"
|
| 65 |
-
"
|
| 66 |
-
"
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
"
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
]
|
| 79 |
}
|
| 80 |
```
|
| 81 |
|
| 82 |
### Data Fields
|
| 83 |
|
| 84 |
-
`
|
|
|
|
| 85 |
`title`: The title of the wikipedia article.
|
| 86 |
-
`
|
| 87 |
-
`
|
| 88 |
-
|
| 89 |
-
`
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
|