Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
csv
Sub-tasks:
multi-class-classification
Languages:
English
Size:
10K - 100K
License:
Ricky Costa
commited on
Commit
•
55a7f9c
1
Parent(s):
705db8b
Update README.md
Browse files
README.md
CHANGED
@@ -32,7 +32,33 @@ task_ids:
|
|
32 |
### Dataset Description
|
33 |
|
34 |
The Twitter Financial News dataset is an English-language dataset containing an annotated corpus of finance-related tweets. The dataset is split into two groups:
|
35 |
-
1. Topic classification: Totals 21,107 documents.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
2. Sentiment analysis: Totals 11,932 documents.
|
37 |
|
38 |
The data was collected using the Twitter API. The current dataset supports the multi-class classification task.
|
|
|
32 |
### Dataset Description
|
33 |
|
34 |
The Twitter Financial News dataset is an English-language dataset containing an annotated corpus of finance-related tweets. The dataset is split into two groups:
|
35 |
+
1. Topic classification: Totals 21,107 documents. Multi-class classification consisting of 20 labels:
|
36 |
+
|
37 |
+
```python
|
38 |
+
topics = {
|
39 |
+
0:'Analyst Update',
|
40 |
+
1:'Fed | Central Banks',
|
41 |
+
2:'Company | Product News',
|
42 |
+
3:'Treasuries | Corporate Debt',
|
43 |
+
4:'Dividend',
|
44 |
+
5:'Earnings',
|
45 |
+
6:'Energy | Oil',
|
46 |
+
7:'Financials',
|
47 |
+
8:'Currencies',
|
48 |
+
9:'General News | Opinion',
|
49 |
+
10:'Gold | Metals | Materials',
|
50 |
+
11:'IPO',
|
51 |
+
12:'Legal | Regulation',
|
52 |
+
13:'M&A | Investments',
|
53 |
+
14:'Macro',
|
54 |
+
15:'Markets',
|
55 |
+
16:'Politics',
|
56 |
+
17:'Personnel Change',
|
57 |
+
18:'Stock Commentary',
|
58 |
+
19:'Stock Movement'
|
59 |
+
}
|
60 |
+
```
|
61 |
+
|
62 |
2. Sentiment analysis: Totals 11,932 documents.
|
63 |
|
64 |
The data was collected using the Twitter API. The current dataset supports the multi-class classification task.
|