Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
parquet
Languages:
Yue Chinese
Size:
10K - 100K
License:
AlienKevin
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -32,4 +32,31 @@ configs:
|
|
32 |
path: data/validation-*
|
33 |
- split: test
|
34 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
35 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
path: data/validation-*
|
33 |
- split: test
|
34 |
path: data/test-*
|
35 |
+
language:
|
36 |
+
- yue
|
37 |
+
license: cc-by-4.0
|
38 |
+
task_categories:
|
39 |
+
- token-classification
|
40 |
---
|
41 |
+
|
42 |
+
This data is the subset of the Hong Kong Cantonese Corpus (HKCanCor) that has been re-segmented by the multi-tiered word segmentation scheme described in the following paper:
|
43 |
+
|
44 |
+
Charles Lam, Chaak-ming Lau, and Jackson L. Lee. 2024. Multi-Tiered Cantonese Word Segmentation. In Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024), pages 11993–12002, Torino, Italy. ELRA and ICCL.
|
45 |
+
|
46 |
+
## Processing from original format
|
47 |
+
|
48 |
+
Chinese word segmentation is commonly framed as a sequence labelling task. To ease the adoption of the original dataset, we have transformed it into two columns:
|
49 |
+
|
50 |
+
1. `chars`: The original sentence split into characters
|
51 |
+
2. `labels`: One of `D` (Dash), `I` (Intermediate), `P` (Pipe), `S` (Space). This labelling scheme expands the common BI (Beginning/Intermediate) scheme into four labels.
|
52 |
+
In particular, the I is the same as the BI scheme but the B tag is further split into D, P, and S.
|
53 |
+
|
54 |
+
Here's a sample segmented sentence in the original format and the processed format:
|
55 |
+
|
56 |
+
Original: 即係 噉樣 嗰-啲 呀 ?
|
57 |
+
|
58 |
+
Processed:
|
59 |
+
* chars: 即 係 噉 樣 嗰 啲 呀 ?
|
60 |
+
* labels: S I S I S D S S
|
61 |
+
|
62 |
+
Note how the label is taken from the left boundary of the labelled character. For the left most character in a sentence, there is no boundary character to its left. In these cases, we set up a convention to always label the left most character as S (Space).
|