amphora commited on
Commit
07cc4a2
1 Parent(s): 431a2b4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +122 -20
README.md CHANGED
@@ -1,23 +1,125 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: SID
5
- dtype: string
6
- - name: TYPE
7
- dtype: string
8
- - name: SRC
9
- dtype: string
10
- - name: ASPECT
11
- dtype: string
12
- - name: SENTIMENT
13
- dtype: string
14
- splits:
15
- - name: train
16
- num_bytes: 2034380
17
- num_examples: 8818
18
- download_size: 765164
19
- dataset_size: 2034380
 
 
 
 
 
20
  ---
21
- # Dataset Card for "korfin-asc"
22
 
23
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language:
5
+ - ko
6
+ language_creators:
7
+ - expert-generated
8
+ license: cc-by-sa-4.0
9
+ multilinguality:
10
+ - monolingual
11
+ pretty_name: KorFin-ABSA
12
+ size_categories:
13
+ - 1K<n<10K
14
+ source_datasets:
15
+ - klue
16
+ tags:
17
+ - sentiment analysis
18
+ - aspect based sentiment analysis
19
+ - finance
20
+ task_categories:
21
+ - text-classification
22
+ task_ids:
23
+ - topic-classification
24
+ - sentiment-classification
25
  ---
 
26
 
27
+ # Dataset Card for KorFin-ABSA
28
+
29
+ ## Table of Contents
30
+ - [Table of Contents](#table-of-contents)
31
+ - [Dataset Description](#dataset-description)
32
+ - [Dataset Summary](#dataset-summary)
33
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
34
+ - [Languages](#languages)
35
+ - [Dataset Structure](#dataset-structure)
36
+ - [Data Instances](#data-instances)
37
+ - [Data Fields](#data-fields)
38
+ - [Data Splits](#data-splits)
39
+ - [Additional Information](#additional-information)
40
+ - [Dataset Curators](#dataset-curators)
41
+ - [Licensing Information](#licensing-information)
42
+ - [Citation Information](#citation-information)
43
+ - [Contributions](#contributions)
44
+
45
+ ## Dataset Description
46
+ ### Dataset Summary
47
+
48
+ The KorFin-ASC is an extension of KorFin-ABSA including 8818 samples with (aspect, polarity) pairs annotated.
49
+ The samples were collected from [KLUE-TC](https://klue-benchmark.com/tasks/66/overview/description) and
50
+ analyst reports from [Naver Finance](https://finance.naver.com).
51
+ Annotation of the dataset is described in the paper [Removing Non-Stationary Knowledge From Pre-Trained Language Models for Entity-Level Sentiment Classification in Finance](https://arxiv.org/abs/2301.03136).
52
+
53
+
54
+ ### Supported Tasks and Leaderboards
55
+
56
+ This dataset supports the following tasks:
57
+
58
+ * Aspect-Based Sentiment Classification
59
+
60
+ ### Languages
61
+
62
+ Korean
63
+
64
+ ## Dataset Structure
65
+
66
+ ### Data Instances
67
+
68
+ Each instance consists of a single sentence, aspect, and corresponding polarity (POSITIVE/NEGATIVE/NEUTRAL).
69
+
70
+ ```
71
+ {
72
+ "title": "LGU+ 1분기 영업익 1천706억원…마케팅 비용 감소",
73
+ "aspect": "LG U+",
74
+ 'sentiment': 'NEUTRAL',
75
+ 'url': 'https://news.naver.com/main/read.nhn?mode=LS2D&mid=shm&sid1=105&sid2=227&oid=001&aid=0008363739',
76
+ 'annotator_id': 'A_01',
77
+ 'Type': 'single'
78
+ }
79
+
80
+ ```
81
+
82
+ ### Data Fields
83
+
84
+ * title:
85
+ * aspect:
86
+ * sentiment:
87
+ * url:
88
+ * annotator_id:
89
+ * url:
90
+
91
+
92
+ ### Data Splits
93
+
94
+ The dataset currently does not contain standard data splits.
95
+
96
+ ## Additional Information
97
+
98
+ You can download the data via:
99
+ ```
100
+ from datasets import load_dataset
101
+ dataset = load_dataset("amphora/KorFin-ASC")
102
+ ```
103
+ Please find more information about the code and how the data was collected in the paper [Removing Non-Stationary Knowledge From Pre-Trained Language Models for Entity-Level Sentiment Classification in Finance](https://arxiv.org/abs/2301.03136).
104
+ The best-performing model on this dataset can be found at [link](https://huggingface.co/amphora/KorFinASC-XLM-RoBERTa).
105
+
106
+ ### Licensing Information
107
+
108
+ KorFin-ASC is licensed under the terms of the [cc-by-sa-4.0](https://creativecommons.org/licenses/by-sa/4.0/)
109
+
110
+ ### Citation Information
111
+
112
+ Please cite this data using:
113
+
114
+ ```
115
+ @article{son2023removing,
116
+ title={Removing Non-Stationary Knowledge From Pre-Trained Language Models for Entity-Level Sentiment Classification in Finance},
117
+ author={Son, Guijin and Lee, Hanwool and Kang, Nahyeon and Hahm, Moonjeong},
118
+ journal={arXiv preprint arXiv:2301.03136},
119
+ year={2023}
120
+ }
121
+ ```
122
+
123
+ ### Contributions
124
+
125
+ Thanks to [@Albertmade](https://github.com/h-albert-lee), [@amphora](https://github.com/guijinSON) for making this dataset.