metterian commited on
Commit
50a3a99
β€’
1 Parent(s): 783c891

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -0
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
+ ```