adamjuhasz commited on
Commit
018cd0e
·
verified ·
1 Parent(s): e554fc9

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +4 -24
README.md CHANGED
@@ -10,33 +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
- - name: truncated
31
- dtype: bool
32
- - name: error
33
- dtype: bool
34
- splits:
35
- - name: train
36
- num_bytes: 7002617
37
- num_examples: 1000
38
- download_size: 4050024
39
- dataset_size: 7002617
40
  ---
41
 
42
  # Simple English Wikipedia (Markdown)
@@ -44,7 +22,7 @@ dataset_info:
44
  - Dump date: 2025-12-01
45
  - Source dump: https://dumps.wikimedia.org/simplewiki/20251201/simplewiki-20251201-pages-articles.xml.bz2
46
  - SHA-1: ee583946e86857e9f1e155f80bd3cd8b5d6dade7
47
- - Records: 20
48
  - Refresh cadence: Weekly on Sundays at 11:00 UTC
49
 
50
  ## Dataset Structure
@@ -55,6 +33,8 @@ Columns:
55
  - `content` (string): Article body converted to markdown with internal and external links preserved.
56
  - `content_no_link` (string): Same content with markdown links stripped to plain text.
57
  - `importance` (string): Importance for a household smart speaker assistant (`low`, `medium`, `high`, or `unknown` when not categorized).
 
 
58
 
59
  ## Processing
60
 
 
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: 1000
26
  - Refresh cadence: Weekly on Sundays at 11:00 UTC
27
 
28
  ## Dataset Structure
 
33
  - `content` (string): Article body converted to markdown with internal and external links preserved.
34
  - `content_no_link` (string): Same content with markdown links stripped to plain text.
35
  - `importance` (string): Importance for a household smart speaker assistant (`low`, `medium`, `high`, or `unknown` when not categorized).
36
+ - `truncated` (bool): `true` when the source article exceeded 40,000 characters; only the first two paragraphs are parsed and stored in this case; otherwise `false`.
37
+ - `error` (bool): `true` when the article could not be parsed (content fields are empty in this case); otherwise `false`.
38
 
39
  ## Processing
40