Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- cs
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
This is a balanced version of the CSFD sentiment dataset originaly presented in the paper Sentiment Analysis in Czech Social Media Using Supervised Machine Learning (citation below).
|
| 7 |
+
|
| 8 |
+
## Format
|
| 9 |
+
|
| 10 |
+
This dataset uses the following jsonl format:
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
```json
|
| 14 |
+
{
|
| 15 |
+
"id": unique identifier,
|
| 16 |
+
"query": text for sentiment analysis,
|
| 17 |
+
"choices": sentiment classes ["negativní","neutrální","pozitivní"],
|
| 18 |
+
"gold": index of gold class
|
| 19 |
+
}
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
## Citation of the original paper
|
| 24 |
+
|
| 25 |
+
Please, cite the original article if you use any of the available resources.
|
| 26 |
+
|
| 27 |
+
@InProceedings{Habernal.Brychcin.2013b, author = {Ivan Habernal and Tom\'a\v{s} Brychc\'{i}n}, title = {Unsupervised Improving of Sentiment Analysis Using Global Target Context}, booktitle = {Proceedings of RANLP 2013}, year = {2013}, publisher = {Association for Computational Linguistics}, pages = {TBD}, url = {TBD} }
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
Original page: https://corpora.kiv.zcu.cz/sentiment/
|