Ricky Costa commited on
Commit
8c58265
1 Parent(s): fea26c8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -24
README.md CHANGED
@@ -37,26 +37,26 @@ The Twitter Financial News dataset is an English-language dataset containing an
37
 
38
  ```python
39
  topics = {
40
- 0:'Analyst Update',
41
- 1:'Fed | Central Banks',
42
- 2:'Company | Product News',
43
- 3:'Treasuries | Corporate Debt',
44
- 4:'Dividend',
45
- 5:'Earnings',
46
- 6:'Energy | Oil',
47
- 7:'Financials',
48
- 8:'Currencies',
49
- 9:'General News | Opinion',
50
- 10:'Gold | Metals | Materials',
51
- 11:'IPO',
52
- 12:'Legal | Regulation',
53
- 13:'M&A | Investments',
54
- 14:'Macro',
55
- 15:'Markets',
56
- 16:'Politics',
57
- 17:'Personnel Change',
58
- 18:'Stock Commentary',
59
- 19:'Stock Movement'
60
  }
61
  ```
62
 
@@ -64,10 +64,10 @@ topics = {
64
 
65
  ```python
66
  sentiments = {
67
- 0:'bearish',
68
- 1:'bullish',
69
- 2:'neutral'
70
- }
71
  ```
72
 
73
  The data was collected using the Twitter API. The current dataset supports the multi-class classification task.
 
37
 
38
  ```python
39
  topics = {
40
+ "LABEL_0": "Analyst Update",
41
+ "LABEL_1": "Fed | Central Banks",
42
+ "LABEL_2": "Company | Product News",
43
+ "LABEL_3": "Treasuries | Corporate Debt",
44
+ "LABEL_4": "Dividend",
45
+ "LABEL_5": "Earnings",
46
+ "LABEL_6": "Energy | Oil",
47
+ "LABEL_7": "Financials",
48
+ "LABEL_8": "Currencies",
49
+ "LABEL_9": "General News | Opinion",
50
+ "LABEL_10": "Gold | Metals | Materials",
51
+ "LABEL_11": "IPO",
52
+ "LABEL_12": "Legal | Regulation",
53
+ "LABEL_13": "M&A | Investments",
54
+ "LABEL_14": "Macro",
55
+ "LABEL_15": "Markets",
56
+ "LABEL_16": "Politics",
57
+ "LABEL_17": "Personnel Change",
58
+ "LABEL_18": "Stock Commentary",
59
+ "LABEL_19": "Stock Movement",
60
  }
61
  ```
62
 
 
64
 
65
  ```python
66
  sentiments = {
67
+ "LABEL_0": "Bearish",
68
+ "LABEL_1": "Bullish",
69
+ "LABEL_2": "Neutral"
70
+ }
71
  ```
72
 
73
  The data was collected using the Twitter API. The current dataset supports the multi-class classification task.