impanascm commited on
Commit
cf4669a
1 Parent(s): 1b14725

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -4
README.md CHANGED
@@ -55,7 +55,7 @@ This is a news dataset for the commodity market which has been manually annotate
55
  The dataset was curated by Ankur Sinha and Tanmay Khandait and is detailed in their paper "Impact of News on the Commodity Market: Dataset and Results." It is currently published by the authors on Kaggle, under the Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0) license.
56
 
57
  ## Dataset Descriptions
58
- - **Homepage:** [Kaggle](https://www.kaggle.com/ankurzing/sentiment-analysis-for-financial-news) [ResearchGate](https://www.researchgate.net/publication/350914989_Impact_of_News_on_the_Commodity_Market_Dataset_and_Results)
59
  - **Repository:**
60
  - **Paper:** [Arxiv](https://arxiv.org/abs/2009.04202)
61
 
@@ -95,9 +95,62 @@ Sentiment Classification
95
  - Price Sentiment: Price sentiment of Gold commodity based on headline
96
 
97
  ### Data Splits
98
- There is currently an train/test split of 80%/20%.
99
- - The train split has 8456 elements. The different counts of "Price Sentiment" within this split are as follows. 'positive': 3531; 'negative': 3068; 'none': 1552; 'neutral': 305.
100
- - The test split has 2114 elements. The different counts of "Price Sentiment" within this split are as follows. 'positive': 881; 'negative': 746; 'none': 416; 'neutral': 71.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
 
102
  ## Dataset Creation
103
 
 
55
  The dataset was curated by Ankur Sinha and Tanmay Khandait and is detailed in their paper "Impact of News on the Commodity Market: Dataset and Results." It is currently published by the authors on Kaggle, under the Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0) license.
56
 
57
  ## Dataset Descriptions
58
+ - **Homepage:** [Kaggle](https://www.kaggle.com/datasets/ankurzing/sentiment-analysis-in-commodity-market-gold) [ResearchGate](https://www.researchgate.net/publication/350914989_Impact_of_News_on_the_Commodity_Market_Dataset_and_Results)
59
  - **Repository:**
60
  - **Paper:** [Arxiv](https://arxiv.org/abs/2009.04202)
61
 
 
95
  - Price Sentiment: Price sentiment of Gold commodity based on headline
96
 
97
  ### Data Splits
98
+ There is currently an train/test split of 80%/20%, with train split having 8456 elements and the test split having 2114 elements.
99
+ Each of the dataset article entries contain a subset of the following features: "Price Direction Up", "Price Direction Constant", "Price Direction Down", "Asset Comparison", "Past Information", "Future Information", "Price Sentiment"
100
+ Below are tables for each task, with the different categories separated into columns:
101
+ Below is the README table for each task, with separate rows for train and test values:
102
+
103
+ | Task | Train | Test |
104
+ |------|-------|------|
105
+ | **Price Direction Up** | 0: 4925<br>1: 3531 | 0: 1233<br>1: 881 |
106
+ | **Price Direction Constant** | 0: 8092<br>1: 364 | 0: 2034<br>1: 80 |
107
+ | **Price Direction Down** | 0: 5311<br>1: 3145 | 0: 1347<br>1: 767 |
108
+ | **Asset Comparison** | 0: 6855<br>1: 1601 | 0: 1714<br>1: 400 |
109
+ | **Past Information** | 1: 8196<br>0: 260 | 1: 2056<br>0: 58 |
110
+ | **Future Information** | 0: 8195<br>1: 261 | 0: 2056<br>1: 58 |
111
+ | **Price Sentiment** | positive: 3531<br>negative: 3068<br>none: 1552<br>neutral: 305 | positive: 881<br>negative: 746<br>none: 416<br>neutral: 71 |
112
+
113
+ #### Price Direction Up
114
+ | | 0 | 1 |
115
+ |------|----|----|
116
+ | Train| 4925 | 3531 |
117
+ | Test | 1233 | 881 |
118
+
119
+ #### Price Direction Constant
120
+ | | 0 | 1 |
121
+ |------|----|----|
122
+ | Train| 8092 | 364 |
123
+ | Test | 2034 | 80 |
124
+
125
+ #### Price Direction Down
126
+ | | 0 | 1 |
127
+ |------|----|----|
128
+ | Train| 5311 | 3145 |
129
+ | Test | 1347 | 767 |
130
+
131
+ #### Asset Comparison
132
+ | | 0 | 1 |
133
+ |------|----|----|
134
+ | Train| 6855 | 1601 |
135
+ | Test | 1714 | 400 |
136
+
137
+ #### Past Information
138
+ | | 1 | 0 |
139
+ |------|----|----|
140
+ | Train| 8196 | 260 |
141
+ | Test | 2056 | 58 |
142
+
143
+ #### Future Information
144
+ | | 0 | 1 |
145
+ |------|----|----|
146
+ | Train| 8195 | 261 |
147
+ | Test | 2056 | 58 |
148
+
149
+ #### Price Sentiment
150
+ | | positive | negative | none | neutral |
151
+ |------|----------|----------|------|---------|
152
+ | Train| 3531 | 3068 | 1552 | 305 |
153
+ | Test | 881 | 746 | 416 | 71 |
154
 
155
  ## Dataset Creation
156