erhwenkuo commited on
Commit
1fdebaa
·
1 Parent(s): 09a70c0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +106 -1
README.md CHANGED
@@ -23,7 +23,112 @@ configs:
23
  data_files:
24
  - split: train
25
  path: 20231001/train-*
 
 
 
 
 
 
 
26
  ---
27
  # Dataset Card for "zhwikisource-zhtw"
28
 
29
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  data_files:
24
  - split: train
25
  path: 20231001/train-*
26
+ license: cc-by-sa-3.0
27
+ task_categories:
28
+ - text-generation
29
+ language:
30
+ - zh
31
+ size_categories:
32
+ - 100K<n<1M
33
  ---
34
  # Dataset Card for "zhwikisource-zhtw"
35
 
36
+ **維基文庫**(英文:Wikisource), 又稱 "自由的圖書館", 是一個由志願者在線收集自由內容文本的站點。 它屬維基媒體計劃項目,由維基媒體基金會負責運營。
37
+
38
+ 作品類型:
39
+ - 典籍 | 史書 | 小說 | 詩歌 | 散文 | 演講 | 歌詞 | 經書 | 更多……
40
+
41
+ 主題:
42
+ - 條約 | 憲法 | 法律 | 教育 | 政治 | 歷史 | 宗教 | 更多……
43
+
44
+ 精選:
45
+ - 文章: 道德經 | 脂硯齋重評石頭記
46
+ - 文集: 紅樓夢 | 三國演義 | 西遊記 | 詩經 | 夢溪筆談 | 三十六計 | 古文觀止
47
+ - 歷史: 史記 | 資治通鑑 | 續資治通鑑 | 金史 | 漢書 | 後漢書 | 三國志
48
+ - 判例: 中國大理院解釋 | 中華民國最高法院解釋 | 中華民國司法院解釋 | 中華民國司法院大法官解釋
49
+ - 分類: 中華民國法律 | 中華人民共和國法律 | 中華人民共和國國務院政府工作報告 | 十三經 | 正史
50
+
51
+
52
+ 這個數據集是根據 Wikipedia dumps (https://dumps.wikimedia.org/) 裡頭 `zhwikisource` 的中文下載檔案來建構的。每個範例都包含一篇完整的維基新聞文章的內容,並經過清理以去除不需要的部分。
53
+
54
+ - **Homepage:** [https://dumps.wikimedia.org](https://dumps.wikimedia.org)
55
+ - **zhwikisource 下載點:** [https://dumps.wikimedia.org/zhwikisource](https://dumps.wikimedia.org/zhwikisource/)
56
+
57
+ ## 數據 Dump 版本
58
+
59
+ 由於維基百科數據集定期會進行網站數據拋轉,在 `2023/10/10` 的時間點去查看時會有下列的數據可供下載:
60
+
61
+ |數據 Dump 目錄|拋轉時間點|
62
+ |-------------|--------|
63
+ |`20230520/`|01-Jul-2023 09:25|
64
+ |`20230601/`|20-Jul-2023 09:28|
65
+ |`20230620/`|01-Aug-2023 09:27|
66
+ |`20230701/`|20-Aug-2023 09:30|
67
+ |`20230720/`|01-Sep-2023 09:27|
68
+ |`20230801/`|20-Sep-2023 09:29|
69
+ |`20230820/`|01-Oct-2023 09:28|
70
+ |`20230901/`|02-Sep-2023 21:44|
71
+ |`20230920/`|21-Sep-2023 17:25|
72
+ |`20231001/`|14-Oct-2023 05:20|
73
+ |`latest/`|14-Oct-2023 05:20|
74
+
75
+ 本數據集會定期去取得最近有明確的日期來進行下載與清理,便於驗證與使用。
76
+
77
+ ## 數據下載清理
78
+
79
+ 1. 下載 zhwiki 的 data dump 檔案
80
+ 2. 使用 [WikiExtractor](https://github.com/attardi/wikiextractor) 套件來進行文件內容萃取
81
+ 3. 使用 [hanzidentifier](https://github.com/tsroten/hanzidentifier) 來判斷內容是中文簡體或繁體 (用文章的 `title`)
82
+ 4. 進行數據清理并轉換成 jsonl 格式檔案
83
+ 5. 使用 Huggingface [Datasets](https://pypi.org/project/datasets/) 套件來載入 jsonl 并上傳至 Huggingface Hub
84
+
85
+ ## 資料集結構
86
+
87
+ 範例如下:
88
+
89
+ ```
90
+ {'id': '7183',
91
+ 'url': 'https://zh.wikisource.org/wiki?curid=7183',
92
+ 'title': '相見歡 (李煜)',
93
+ 'lang': 1,
94
+ 'text': '無言獨上西樓,月如鉤。寂寞梧桐深院鎖清秋。剪不斷,理還亂,是離愁。別是一般滋味在心頭。'
95
+ }
96
+ ```
97
+
98
+ ## 資料欄位
99
+
100
+ 所有配置中的資料欄位都是相同的:
101
+
102
+ - `id (str)`: 文章的 ID。
103
+ - `url (str)`: 文章的 URL。
104
+ - `title (str)`: 文章的標題。
105
+ - `lang (int)`: 判斷內容是中文簡體或繁體 (用文章的 `title`)。
106
+ - 0: UNKNOWN
107
+ - 1: TRADITIONAL (中文繁體)
108
+ - 2: SIMPLIFIED (中文簡體)
109
+ - 3: BOTH
110
+ - 4: MIXED
111
+ - `text (str)`: 文章的文字內容。
112
+
113
+ ## 使用
114
+
115
+ ```python
116
+ from datasets import load_dataset
117
+
118
+ # 請在第二個參數去指定要使用的數據 dump 的日期
119
+ load_dataset("erhwenkuo/zhwikisource-zhtw", "20231001")
120
+ ```
121
+
122
+ ## 許可資訊
123
+
124
+ 維基百科的大部分文章內容及其許多圖像均根據 `Creative Commons Attribution-ShareAlike 3.0 Unported License (CC BY-SA)` 和 `GNU Free Documentation License (GFDL)` 共同授權。
125
+
126
+ ## Citation
127
+
128
+ ```
129
+ @ONLINE{wikidump,
130
+ author = "Wikimedia Foundation",
131
+ title = "Wikimedia Downloads",
132
+ url = "https://dumps.wikimedia.org"
133
+ }
134
+ ```