adamjuhasz commited on
Commit
3e28f2c
·
verified ·
1 Parent(s): 6aee20f

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +3 -21
README.md CHANGED
@@ -10,29 +10,11 @@ configs:
10
  - config_name: default
11
  data_files:
12
  - split: train
13
- path: data/train-*
14
  tags:
15
  - simple-wikipedia
16
  - markdown
17
  - sqlite
18
- dataset_info:
19
- features:
20
- - name: page_id
21
- dtype: int64
22
- - name: title
23
- dtype: string
24
- - name: content
25
- dtype: string
26
- - name: content_no_link
27
- dtype: string
28
- - name: importance
29
- dtype: string
30
- splits:
31
- - name: train
32
- num_bytes: 105007
33
- num_examples: 10
34
- download_size: 77086
35
- dataset_size: 105007
36
  ---
37
 
38
  # Simple English Wikipedia (Markdown)
@@ -40,7 +22,7 @@ dataset_info:
40
  - Dump date: 2025-12-01
41
  - Source dump: https://dumps.wikimedia.org/simplewiki/20251201/simplewiki-20251201-pages-articles.xml.bz2
42
  - SHA-1: ee583946e86857e9f1e155f80bd3cd8b5d6dade7
43
- - Records: 20
44
  - Refresh cadence: Weekly on Sundays at 11:00 UTC
45
 
46
  ## Dataset Structure
@@ -56,7 +38,7 @@ Columns:
56
 
57
  - Downloaded `pages-articles` XML dump and verified SHA-1.
58
  - Kept only namespace 0 articles and skipped redirects.
59
- - Stripped templates and reference tags, preserved headings, and converted wiki links to markdown links.
60
  - Stored a SQLite mirror (`pages` table) alongside the Hugging Face dataset.
61
  - Markdown links point to the target page's numeric ID for fast lookup without a title-to-ID join.
62
 
 
10
  - config_name: default
11
  data_files:
12
  - split: train
13
+ path: data/train-*.parquet
14
  tags:
15
  - simple-wikipedia
16
  - markdown
17
  - sqlite
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  ---
19
 
20
  # Simple English Wikipedia (Markdown)
 
22
  - Dump date: 2025-12-01
23
  - Source dump: https://dumps.wikimedia.org/simplewiki/20251201/simplewiki-20251201-pages-articles.xml.bz2
24
  - SHA-1: ee583946e86857e9f1e155f80bd3cd8b5d6dade7
25
+ - Records: 10
26
  - Refresh cadence: Weekly on Sundays at 11:00 UTC
27
 
28
  ## Dataset Structure
 
38
 
39
  - Downloaded `pages-articles` XML dump and verified SHA-1.
40
  - Kept only namespace 0 articles and skipped redirects.
41
+ - Stripped templates/ref/gallery blocks and file/category links; converted headings, lists, tables, and internal/external links to Markdown with page IDs.
42
  - Stored a SQLite mirror (`pages` table) alongside the Hugging Face dataset.
43
  - Markdown links point to the target page's numeric ID for fast lookup without a title-to-ID join.
44