lianghsun commited on
Commit
d692263
1 Parent(s): 5d71e42

Update README

Browse files
Files changed (1) hide show
  1. README.md +52 -1
README.md CHANGED
@@ -8,4 +8,55 @@ tags:
8
  - legal
9
  size_categories:
10
  - 10K<n<100K
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - legal
9
  size_categories:
10
  - 10K<n<100K
11
+ ---
12
+ # Dataset Card for 中華民國台灣法規全文後處理資料集(tw-processed-law-ctx)
13
+
14
+ ## Dataset Summary
15
+ 本資料是將 [tw-processed-law-article](https://huggingface.co/datasets/lianghsun/tw-processed-law-article) 經過後處理,將相同法規的法條合併為同一個文本。
16
+
17
+ ## Supported Tasks and Leaderboards
18
+ 本資料集可以運用在 (Continuous) Pre-training,讓模型學會中華民國的法規內容。
19
+
20
+ ## Languages
21
+ 繁體中文。
22
+
23
+ ## Dataset Structure
24
+ ### Data Instances
25
+ 一個資料樣本如下,
26
+ ```
27
+ {
28
+ "text": "",
29
+ "name": "",
30
+ "level": "",
31
+ "abandon_note": "",
32
+ "modified_date": "",
33
+ "api_updated_date": "",
34
+ }
35
+ ```
36
+
37
+ ### Data Fields
38
+ - "text": `string`,法規全文,請注意這裡我們並沒有符合常見的法規全文格式,而是將法規名稱在本欄位中重覆出現。
39
+ - "name": `string`,法規的名稱。
40
+ - "level": `string`,分成三個位階:憲法、法律或命令。
41
+ - "abandon_note" `string` | `空值` ,廢止情況。
42
+ - "modified_date": `string`,法規修改日期。
43
+ - "api_updated_date": `string`,由中華民國全國法規資料庫 API 發佈本列資料的時間。
44
+
45
+ ### Data Splits
46
+ 這個 repo 共有以下檔案:
47
+ ```
48
+ - `train.*`: 共有 `11,462` 筆。在這個資料集我們並未分割任何法規做為測試集,畢竟我們希望模型能學到每一條法規內容,但如果你有需要測試集,建議可以將廢止法規取出做為測試集。
49
+ ```
50
+
51
+ ## Dataset Creation
52
+ ### Curation
53
+ (WIP)
54
+
55
+ ### Source Data
56
+ [全國法規資料庫 OpenAPI](https://law.moj.gov.tw/api/)
57
+
58
+ ### Personal and Sensitive Information
59
+ 無。
60
+
61
+ ## License
62
+ apache-2.0