vmkhlv commited on
Commit
d896e0e
1 Parent(s): 54a95e7

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +139 -0
README.md ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: id
5
+ dtype: string
6
+ - name: review
7
+ dtype: string
8
+ - name: sentiment
9
+ dtype:
10
+ class_label:
11
+ names:
12
+ '0': negative
13
+ '1': neutral
14
+ '2': positive
15
+ splits:
16
+ - name: train
17
+ num_bytes: 850007
18
+ num_examples: 7973
19
+ - name: validation
20
+ num_bytes: 153447
21
+ num_examples: 1411
22
+ - name: test
23
+ num_bytes: 129270
24
+ num_examples: 1181
25
+ download_size: 740756
26
+ dataset_size: 1132724
27
+ configs:
28
+ - config_name: default
29
+ data_files:
30
+ - split: train
31
+ path: data/train-*
32
+ - split: validation
33
+ path: data/validation-*
34
+ - split: test
35
+ path: data/test-*
36
+ task_categories:
37
+ - text-classification
38
+ language:
39
+ - nb
40
+ size_categories:
41
+ - 10K<n<100K
42
+ pretty_name: NoReC_sentence
43
+ ---
44
+ # Dataset Card for NoReC_sentence
45
+
46
+ <!-- Provide a quick summary of the dataset. -->
47
+
48
+ Sentence-level polarity classification of Norwegian sentences from reviews across mixed domains.
49
+
50
+ ## Dataset Details
51
+
52
+ ### Dataset Description
53
+
54
+ This is a dataset for sentence-level sentiment classification in Norwegian, derived from the the fine-grained annotations of [NoReC_fine](https://github.com/ltgoslo/norec_fine). We here provide a version where the annotations have been aggregated at the sentence-level, by only keeping sentences that contain sentiment annotations of either positive or negative polarity (but not both), in addition to sentences having no sentiment at all (neutral).
55
+ Note that sentences that contained mixed polarity are excluded. The data comes with pre-defined train/dev/test splits. It can be used for either binary (positive vs negative) or three-way classificaton, depending on whether sentences with the neutral label is considered or not.
56
+
57
+ - **Curated by:** The [SANT](https://www.mn.uio.no/ifi/english/research/projects/sant/) project (Sentiment Analysis for Norwegian Text) at the [Language Technology Group](https://www.mn.uio.no/ifi/english/research/groups/ltg/) (LTG) at the University of Oslo
58
+ - **Funded by:** The [SANT](https://www.mn.uio.no/ifi/english/research/projects/sant/) is funded by the [Research Council of Norway](https://www.forskningsradet.no/en/) (NFR grant number 270908).
59
+ - **Shared by:** The [SANT](https://www.mn.uio.no/ifi/english/research/projects/sant/) project (Sentiment Analysis for Norwegian Text) at the [Language Technology Group](https://www.mn.uio.no/ifi/english/research/groups/ltg/) (LTG) at the University of Oslo
60
+ - **Language(s) (NLP):** Norwegian (Nokmål and Nynorsk)
61
+ - **License:** The data is distributed under a [Creative Commons Attribution-NonCommercial licence](https://creativecommons.org/licenses/by-nc/4.0/) (CC BY-NC 4.0). The licence is motivated by the need to block the possibility of third parties redistributing the orignal reviews for commercial purposes. Note that machine learned models, extracted lexicons, embeddings, and similar resources that are created on the basis of NoReC are not considered to contain the original data and so can be freely used also for commercial purposes despite the non-commercial condition.
62
+
63
+ ### Dataset Sources
64
+
65
+ <!-- Provide the basic links for the dataset. -->
66
+
67
+ - **Repository:** [https://github.com/ltgoslo/norec_sentence](https://github.com/ltgoslo/norec_sentence)
68
+ - **Paper:** The underlying NoReC_fine dataset is described in the paper [A Fine-Grained Sentiment Dataset for Norwegian](https://aclanthology.org/2020.lrec-1.618/) by Øvrelid et al., published at LREC 2020. The aggregation to the sentence-level was first described in [Large-Scale Contextualised Language Modelling for Norwegian](https://aclanthology.org/2021.nodalida-main.4/) by Kutuzov et al. at NoDaLiDa 2021.
69
+
70
+ ## Uses
71
+
72
+ The data is intended to be used for training and testing models for Norwegian sentence-level classification of polarity, either binary (positive / negative) or ternary (positive / negative / neutral).
73
+
74
+ ## Dataset Structure
75
+
76
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
77
+
78
+ [More Information Needed]
79
+
80
+ ## Dataset Creation
81
+
82
+ ### Curation Rationale
83
+
84
+ The aggragated annotations of NoReC_sentence are primarily intended for benchmarking purposes.
85
+
86
+ ### Source Data
87
+
88
+ The sentence-level annotations are aggregated from the NoReC_fine dataset, which in turn comprises a subset of the documents in the [Norwegian Review Corpus](https://github.com/ltgoslo/norec) (NoReC), which contains full-text professional reviews collected from major Norwegian news sources and cover a range of different domains, including literature, movies, video games, restaurants, music and theater, in addition to product reviews across a range of categories. The review articles NoReC were originally donated by the media partners in the SANT project; the Norwegian Broadcasting Corporation (NRK), Schibsted Media Group and Aller Media. The data comprises reviews extracted from eight different Norwegian news sources: Dagbladet, VG, Aftenposten, Bergens Tidende, Fædrelandsvennen, Stavanger Aftenblad, DinSide.no and P3.no. In terms of publishing date the reviews of NoReC mainly cover the time span 2003–2019, although it also includes a handful of reviews dating back as far as 1998.
89
+
90
+ ### Annotators
91
+
92
+ The original annotations of NoReC_fine that the sentence-level labels here are derived from, were originally created by hired annotators who were all BSc- or MSc-level students in the Language Technology study program at the Department of informatics, University of Oslo.
93
+
94
+ #### Personal and Sensitive Information
95
+
96
+ <!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
97
+
98
+ The data does not contain information considered personal or sensitive.
99
+
100
+ ### Recommendations
101
+
102
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
103
+
104
+ Results obtained on this data might not generalize to texts from other domains or genres. Any biases in the sentiments expressed by the original review authors may carry over to models trained on this data.
105
+
106
+ ## Citation
107
+
108
+ <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
109
+
110
+ **BibTeX:**
111
+ ```
112
+ @InProceedings{KutBarVel21,
113
+ author = {Andrey Kutuzov and Jeremy Barnes and Erik Velldal and Lilja {\O}vrelid and Stephan Oepen},
114
+ title = {Large-Scale Contextualised Language Modelling for Norwegian},
115
+ booktitle = {{Proceedings of the 23rd Nordic Conference on Computational Linguistics (NoDaLiDa 2021)}},
116
+ year = 2021
117
+ }
118
+
119
+ @InProceedings{OvrMaeBar20,
120
+ author = {Lilja {\O}vrelid and Petter M{\ae}hlum and Jeremy Barnes and Erik Velldal},
121
+ title = {A Fine-grained Sentiment Dataset for {N}orwegian},
122
+ booktitle = {{Proceedings of the 12th Edition of the Language Resources and Evaluation Conference}},
123
+ year = 2020,
124
+ address = "Marseille, France, 2020"
125
+ }
126
+ ```
127
+
128
+ **APA:**
129
+
130
+ [More Information Needed]
131
+
132
+
133
+ ## Dataset Card Authors
134
+
135
+ Vladislav Mikhailov and Erik Velldal
136
+
137
+ ## Dataset Card Contact
138
+
139
+ vladism@ifi.uio.no and erikve@ifi.uio.no