Datasets:
cjvt
/

Modalities:
Tabular
Text
Languages:
Slovenian
Libraries:
Datasets
License:
matejklemen commited on
Commit
1876b5c
·
1 Parent(s): 9db7fcc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +98 -1
README.md CHANGED
@@ -1,3 +1,100 @@
1
  ---
2
- license: cc-by-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ language:
5
+ - sl
6
+ language_creators:
7
+ - found
8
+ license:
9
+ - cc-by-sa-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: SentiNews
13
+ size_categories: []
14
+ source_datasets:
15
+ - original
16
+ tags:
17
+ - slovenian sentiment
18
+ - news articles
19
+ task_categories:
20
+ - text-classification
21
+ task_ids:
22
+ - sentiment-classification
23
  ---
24
+
25
+ # Dataset Card for SentiNews
26
+
27
+ ## Dataset Description
28
+
29
+ - **Homepage:** https://github.com/19Joey85/Sentiment-annotated-news-corpus-and-sentiment-lexicon-in-Slovene
30
+ - **Paper:** Bučar, J., Žnidaršič, M. & Povh, J. Annotated news corpora and a lexicon for sentiment analysis in Slovene. Lang Resources & Evaluation 52, 895–919 (2018). https://doi.org/10.1007/s10579-018-9413-3
31
+
32
+ ### Dataset Summary
33
+
34
+ SentiNews is a Slovenian sentiment classification dataset, consisting of news articles manually annotated with their sentiment by between two and six annotators.
35
+ It is annotated at three granularities:
36
+ - document-level (config `document_level`, 10 427 documents),
37
+ - paragraph-level (config `paragraph_level`, 89 999 paragraphs), and
38
+ - sentence-level (config `sentence_level`, 168 899 sentences).
39
+
40
+ ### Supported Tasks and Leaderboards
41
+
42
+ Sentiment classification, three classes (negative, neutral, positive).
43
+
44
+ ### Languages
45
+
46
+ Slovenian.
47
+
48
+ ## Dataset Structure
49
+
50
+ ### Data Instances
51
+
52
+ A sample instance from the sentence-level config:
53
+ ```
54
+ {
55
+ 'nid': 2,
56
+ 'content': 'Vilo Prešeren je na dražbi ministrstva za obrambo kupilo nepremičninsko podjetje Condor Real s sedežem v Lescah.',
57
+ 'sentiment': 'neutral',
58
+ 'pid': 1,
59
+ 'sid': 1
60
+ }
61
+ ```
62
+
63
+ ### Data Fields
64
+
65
+ The data fields are similar among all three configs, with the only difference being the IDs.
66
+
67
+ - `nid`: a uint16 containing a unique ID of the news article (document).
68
+ - `content`: a string containing the body of the news article
69
+ - `sentiment`: the sentiment of the instance
70
+ - `pid`: a uint8 containing the consecutive number of the paragraph inside the current news article, **not unique** (present in the configs `paragraph_level` and `sentence_level`)
71
+ - `sid`: a uint8 containing the consecutive number of the sentence inside the current paragraph, **not unique** (present in the config `sentence_level`)
72
+
73
+ ## Additional Information
74
+
75
+ ### Dataset Curators
76
+
77
+ Jože Bučar, Martin Žnidaršič, Janez Povh.
78
+
79
+ ### Licensing Information
80
+
81
+ CC BY-SA 4.0
82
+
83
+ ### Citation Information
84
+
85
+ ```
86
+ @article{buvcar2018annotated,
87
+ title={Annotated news corpora and a lexicon for sentiment analysis in Slovene},
88
+ author={Bu{\v{c}}ar, Jo{\v{z}}e and {\v{Z}}nidar{\v{s}}i{\v{c}}, Martin and Povh, Janez},
89
+ journal={Language Resources and Evaluation},
90
+ volume={52},
91
+ number={3},
92
+ pages={895--919},
93
+ year={2018},
94
+ publisher={Springer}
95
+ }
96
+ ```
97
+
98
+ ### Contributions
99
+
100
+ Thanks to [@matejklemen](https://github.com/matejklemen) for adding this dataset.