Update README.md
Browse files
README.md
CHANGED
@@ -14,4 +14,46 @@ configs:
|
|
14 |
data_files:
|
15 |
- split: train
|
16 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
data_files:
|
15 |
- split: train
|
16 |
path: data/train-*
|
17 |
+
license: apache-2.0
|
18 |
+
task_categories:
|
19 |
+
- text-generation
|
20 |
+
language:
|
21 |
+
- ko
|
22 |
+
size_categories:
|
23 |
+
- 100K<n<1M
|
24 |
---
|
25 |
+
|
26 |
+
# DC_inside_comments
|
27 |
+
|
28 |
+
This dataset contains 110,000 raw comments collected from [DC Inside](https://www.dcinside.com/). It is intended for unsupervised learning or pretraining purposes.
|
29 |
+
|
30 |
+
## Dataset Summary
|
31 |
+
|
32 |
+
- **Data Type**: Unlabeled raw comments
|
33 |
+
- **Number of Examples**: 110,000
|
34 |
+
- **Source**: DC Inside
|
35 |
+
|
36 |
+
## Related Dataset
|
37 |
+
|
38 |
+
For labeled data and multi-task annotated examples, please refer to the [KoMultiText](https://huggingface.co/datasets/Dasool/KoMultiText) dataset.
|
39 |
+
|
40 |
+
## How to Load the Dataset
|
41 |
+
```python
|
42 |
+
from datasets import load_dataset
|
43 |
+
|
44 |
+
# Load the unlabeled dataset
|
45 |
+
dataset = load_dataset("Dasool/DC_inside_comments")
|
46 |
+
print(dataset)
|
47 |
+
```
|
48 |
+
|
49 |
+
## Citation
|
50 |
+
|
51 |
+
```bibtex
|
52 |
+
@misc{choi2023largescale,
|
53 |
+
title={Large-Scale Korean Text Dataset for Classifying Biased Speech in Real-World Online Services},
|
54 |
+
author={Dasol Choi and Jooyoung Song and Eunsun Lee and Jinwoo Seo and Heejune Park and Dongbin Na},
|
55 |
+
year={2023},
|
56 |
+
eprint={2310.04313},
|
57 |
+
archivePrefix={arXiv},
|
58 |
+
primaryClass={cs.CL}
|
59 |
+
}
|