Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -75,6 +75,21 @@ configs:
|
|
75 |
- **Labeled Data**: 40,361 comments (train/test split).
|
76 |
- **Unlabeled Data**: 110,000 comments for potential pretraining or unsupervised learning.
|
77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
|
79 |
## Citation
|
80 |
|
@@ -89,8 +104,6 @@ configs:
|
|
89 |
}
|
90 |
</pre>
|
91 |
|
92 |
-
## Code
|
93 |
-
- Korean BERT-based fine-tuning. [Github](https://github.com/Dasol-Choi/KoMultiText?tab=readme-ov-file)
|
94 |
|
95 |
## Contact
|
96 |
|
|
75 |
- **Labeled Data**: 40,361 comments (train/test split).
|
76 |
- **Unlabeled Data**: 110,000 comments for potential pretraining or unsupervised learning.
|
77 |
|
78 |
+
## How to Load the Dataset
|
79 |
+
|
80 |
+
```python
|
81 |
+
from datasets import load_dataset
|
82 |
+
|
83 |
+
# Load the dataset
|
84 |
+
dataset = load_dataset("Dasool/KoMultiText")
|
85 |
+
|
86 |
+
# Access train and test splits
|
87 |
+
train_dataset = dataset["train"]
|
88 |
+
test_dataset = dataset["test"]
|
89 |
+
```
|
90 |
+
|
91 |
+
## Code Example
|
92 |
+
- Korean BERT-based fine-tuning. [Github](https://github.com/Dasol-Choi/KoMultiText?tab=readme-ov-file)
|
93 |
|
94 |
## Citation
|
95 |
|
|
|
104 |
}
|
105 |
</pre>
|
106 |
|
|
|
|
|
107 |
|
108 |
## Contact
|
109 |