Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
csv
Sub-tasks:
multi-class-classification
Languages:
English
Size:
10K - 100K
License:
Ricky Costa
commited on
Commit
•
fea26c8
1
Parent(s):
55a7f9c
Update README.md
Browse files
README.md
CHANGED
@@ -32,7 +32,8 @@ 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 |
-
|
|
|
36 |
|
37 |
```python
|
38 |
topics = {
|
@@ -59,7 +60,15 @@ topics = {
|
|
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.
|
65 |
|
|
|
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 |
+
|
36 |
+
1. Topic classification: Totals 21,107 documents consisting of 20 labels:
|
37 |
|
38 |
```python
|
39 |
topics = {
|
|
|
60 |
}
|
61 |
```
|
62 |
|
63 |
+
2. Sentiment analysis: Totals 11,932 documents consisting of 3 labels:
|
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.
|
74 |
|