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