hochienH commited on
Commit
d30c62a
·
verified ·
1 Parent(s): c48d51b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +112 -52
README.md CHANGED
@@ -1,54 +1,114 @@
1
  ---
2
- dataset_info:
3
- - config_name: judgements
4
- features:
5
- - name: JID
6
- dtype: string
7
- - name: JYEAR
8
- dtype: string
9
- - name: JCASE
10
- dtype: string
11
- - name: JNO
12
- dtype: string
13
- - name: JDATE
14
- dtype: string
15
- - name: JTITLE
16
- dtype: string
17
- - name: JFULL
18
- dtype: string
19
- - name: JPDF
20
- dtype: string
21
- - name: DISPUTABILITY
22
- dtype: int64
23
- splits:
24
- - name: train
25
- num_bytes: 1507143016
26
- num_examples: 52993
27
- download_size: 702674237
28
- dataset_size: 1507143016
29
- - config_name: sentences
30
- features:
31
- - name: 檔名
32
- dtype: string
33
- - name: 句子編號
34
- dtype: int64
35
- - name: 句子內容
36
- dtype: string
37
- - name: DISPUTABILITY
38
- dtype: int64
39
- splits:
40
- - name: train
41
- num_bytes: 1518000979
42
- num_examples: 4479889
43
- download_size: 639137489
44
- dataset_size: 1518000979
45
- configs:
46
- - config_name: judgements
47
- data_files:
48
- - split: train
49
- path: judgements/train-*
50
- - config_name: sentences
51
- data_files:
52
- - split: train
53
- path: sentences/train-*
54
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - zh
4
+ license: cc-by-4.0
5
+ task_categories:
6
+ - text-classification
7
+ tags:
8
+ - legal
9
+ - taiwan
10
+ - tax
11
+ size_categories:
12
+ - 1M<n<10M
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  ---
14
+ # Disputability Datasets for Taiwanese Administrative Tax Cases (DDTAT)
15
+
16
+ ## Overview
17
+ This dataset contains over 50,000 administrative litigation judgments from Taiwan, primarily focusing on tax law cases. It provides a rich resource for legal natural language processing (LegalNLP), specifically for tasks such as disputability detection, legal judgment prediction, and document structure analysis.
18
+
19
+ The dataset is hosted on Hugging Face Hub: [hochienH/DDTAT](https://huggingface.co/datasets/hochienH/DDTAT)
20
+
21
+ The dataset is organized into two configurations:
22
+ 1. **judgements**: Full text and metadata for each judgment.
23
+ 2. **sentences**: Over 4.5 million sentences annotated with disputability labels.
24
+
25
+ ## Dataset Structure
26
+
27
+ ### 1. Judgements (Config: `judgements`)
28
+ * **Content**: Full text and metadata of judgments.
29
+ * **Fields**:
30
+ * `JID`: Unique Judgment ID (e.g., `KSBA,102,訴,424,20150325,3`)
31
+ * `JYEAR`: Case Year
32
+ * `JCASE`: Case Type (e.g., 訴, 簡)
33
+ * `JNO`: Case Number
34
+ * `JDATE`: Judgment Date
35
+ * `JTITLE`: Case Reason/Title (e.g., 綜合所得稅)
36
+ * `JFULL`: Full text of the judgment
37
+ * `DISPUTABILITY`: Document-level label
38
+
39
+ ### 2. Sentences (Config: `sentences`)
40
+ * **Content**: Annotated sentences.
41
+ * **Fields**:
42
+ * `檔名`: Corresponding Judgment ID
43
+ * `句子編號`: Sentence Sequence ID
44
+ * `句子內容`: Text content of the sentence
45
+ * `DISPUTABILITY`: Sentence-level label
46
+
47
+ ## Usage
48
+
49
+ You can easily load the dataset using the Hugging Face `datasets` library.
50
+
51
+ ```python
52
+ from datasets import load_dataset
53
+
54
+ # Load Sentences
55
+ ds_sentences = load_dataset("hochienH/DDTAT", "sentences")
56
+ print(ds_sentences['train'][0])
57
+
58
+ # Load Judgments
59
+ ds_judgements = load_dataset("hochienH/DDTAT", "judgements")
60
+ print(ds_judgements['train'][0])
61
+ ```
62
+
63
+ ## Statistics
64
+
65
+ ### Data Volume
66
+ * **Total Judgments**: 52,993
67
+ * **Total Sentences**: 4,479,889
68
+
69
+ ### Length Distribution (Characters)
70
+ | Level | Mean | Median | Std Dev | Q1 (25%) | Q3 (75%) |
71
+ |-------|------|--------|---------|----------|----------|
72
+ | **Sentence** | 101.09 | 76.00 | 92.36 | 42.00 | 132.00 |
73
+ | **Judgment** | 11,487.13 | 9,207.00 | 8,257.11 | N/A | N/A |
74
+
75
+ ### Disputability Label Distribution
76
+ The dataset is imbalanced, with the majority of sentences falling into two categories (Label 1 and Label 2).
77
+
78
+ | Label | Count | Percentage |
79
+ |-------|-------|------------|
80
+ | **1** | 2,360,486 | 52.69% |
81
+ | **2** | 1,761,577 | 39.32% |
82
+ | **3** | 123,971 | 2.77% |
83
+ | **4** | 199,589 | 4.46% |
84
+ | **5** | 20,359 | 0.45% |
85
+ | **Others** | ~13,000 | < 0.3% |
86
+
87
+ ### Top 10 Case Titles (Reasons)
88
+ The dataset is heavily focused on tax administration.
89
+ 1. **Individual Income Tax** (綜合所得稅)
90
+ 2. **Profit-seeking Enterprise Income Tax** (營利事業所得稅)
91
+ 3. **Business Tax** (營業稅)
92
+ 4. **Gift Tax** (贈與稅)
93
+ 5. **Land Value Tax** (地價稅)
94
+ 6. **Estate Tax** (遺產稅)
95
+ 7. **Land Value Increment Tax** (土地增值稅)
96
+ 8. **House Tax** (房屋稅)
97
+ 9. **Customs Tariff Classification** (進口貨物核定稅則號別)
98
+ 10. **Income Tax Act** (所得稅法)
99
+
100
+ ## Visualizations
101
+
102
+ ### 1. Disputability Distribution by Case Title
103
+ ![Top 10 Titles Distribution](top10_titles_disputability.png)
104
+ *Distribution of disputability labels across the top 10 most frequent case types. Labels 1 and 2 are highlighted in lighter colors.*
105
+
106
+ ### 2. Overall Judgment Disputability
107
+ ![Overall Distribution](judgment_disputability_pie.png)
108
+ *Overall proportion of disputability labels across the entire dataset.*
109
+
110
+ ### 3. Length Statistics
111
+ ![Length Distribution](length_distribution.png)
112
+ *Distribution of sentence lengths and full judgment lengths (Top 99%).*
113
+
114
+