Update README.md
Browse files
README.md
CHANGED
@@ -45,3 +45,33 @@ configs:
|
|
45 |
- split: korean
|
46 |
path: data/korean-*
|
47 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
- split: korean
|
46 |
path: data/korean-*
|
47 |
---
|
48 |
+
|
49 |
+
|
50 |
+
### π°π·πΊπΈπ―π΅π¨π³πͺπΈ KoCommonGEN v2 Code-switching
|
51 |
+
|
52 |
+
This KoCommonGEN v2 Code-switching dataset consists of 99 samples for numerical commonsense reasoning, which were created relying on machine translation.
|
53 |
+
|
54 |
+
The dataset can be found on Hugging Face at: [nlpai-lab/ko_commongen_v2_code_switching](https://huggingface.co/datasets/nlpai-lab/ko_commongen_v2_code_switching)
|
55 |
+
|
56 |
+
This dataset contains code-switching data for the following languages:
|
57 |
+
- Korean (korean)
|
58 |
+
- English (english)
|
59 |
+
- Japanese (japan)
|
60 |
+
- Chinese (china)
|
61 |
+
- Spanish (espanol)
|
62 |
+
|
63 |
+
(The code-switching data relies on machine translation, which may result in some inaccuracies.)
|
64 |
+
|
65 |
+
|
66 |
+
To load the dataset, you can use the following code:
|
67 |
+
|
68 |
+
```python
|
69 |
+
from datasets import load_dataset
|
70 |
+
|
71 |
+
dataset = load_dataset("nlpai-lab/ko_commongen_v2_code_switching")
|
72 |
+
|
73 |
+
# To access a specific language dataset:
|
74 |
+
korean_data = dataset['korean']
|
75 |
+
english_data = dataset['english']
|
76 |
+
# ... and so on for other languages
|
77 |
+
```
|