ruanchaves commited on
Commit
ec045b3
·
1 Parent(s): 8e7020b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +89 -0
README.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ # For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
3
+ # Doc / guide: https://huggingface.co/docs/hub/datasets-cards
4
+ {}
5
+ ---
6
+
7
+ # Dataset Card for ReLi-SA
8
+
9
+ ## Dataset Description
10
+
11
+ - **Homepage:**
12
+ - **Repository:**
13
+ - **Paper:**
14
+ - **Leaderboard:**
15
+ - **Point of Contact:**
16
+
17
+ ### Dataset Summary
18
+
19
+ ReLi-SA is a dataset created within the framework of the LEARN project "Semantic Annotators based on Active Learning," coordinated by Ruy Milidiú (Department of Informatics - PUC-Rio). It consists of 1,600 book reviews manually annotated for the presence of opinions on the reviewed book and its polarity.
20
+ The dataset contains reviews in Brazilian Portuguese on books written by seven authors: Stephenie Meyer, Thalita Rebouças, Sidney Sheldon, Jorge Amado, George Orwell, José Saramago, and J.D. Salinger. The language used in the reviews varies from highly informal, with slang, abbreviations, neologisms, and emoticons, to more formal reviews with a more elaborate vocabulary.
21
+
22
+ ### Supported Tasks and Leaderboards
23
+
24
+ - `sentiment-analysis`: The dataset can be used to train a model for sentiment analysis, which consists of classifying the sentiment expressed in a sentence as positive, negative, neutral, or mixed. Success on this task is typically measured by achieving a high [F1 score](https://huggingface.co/metrics/f1).
25
+
26
+ ### Languages
27
+
28
+ This dataset is in Brazilian Portuguese (BCP-47 code: `pt-BR`).
29
+
30
+ ## Dataset Structure
31
+
32
+ ### Data Instances
33
+
34
+ ```json
35
+ {
36
+ 'source': 'ReLi-Orwell.txt',
37
+ 'title': 'False',
38
+ 'book': '1984',
39
+ 'review_id': '0',
40
+ 'score': 5.0,
41
+ 'sentence_id': 102583,
42
+ 'unique_review_id': 'ReLi-Orwell_1984_0',
43
+ 'sentence': ' Um ótimo livro , além de ser um ótimo alerta para uma potencial distopia , em contraponto a utopia tão sonhada por os homens de o medievo e início de a modernidade .',
44
+ 'label': 'positive'
45
+ }
46
+ ```
47
+
48
+ ### Data Fields
49
+
50
+ * `source`: The source file of the review.
51
+ * `title`: A boolean field indicating whether the sentence is a review title (True) or not (False).
52
+ * `book`: The book that the review is about.
53
+ * `review_id`: The review ID within the source file.
54
+ * `score`: The score the review attributes to the book.
55
+ * `sentence_id`: The sequential ID of the sentence (can be used to sort the sentences within a review).
56
+ * `unique_review_id`: A unique ID for the review a sentence belongs to.
57
+ * `sentence`: The sentence for which the label indicates the sentiment.
58
+ * `label`: The sentiment label, either `positive`, `neutral`, `negative`, or `mixed` if both positive and negative sentiment polarity tokens are found in the sentence.
59
+
60
+ ### Data Splits
61
+
62
+ The dataset is divided into three splits:
63
+
64
+ | | train | validation | test |
65
+ |------------|--------:|----------:|-------:|
66
+ | Instances | 7,875 | 1,348 | 3,288 |
67
+
68
+ The splits are carefully made to avoid having reviews about a given author appear in more than one split.
69
+
70
+ ## Additional Information
71
+
72
+ ### Citation Information
73
+
74
+ If you use this dataset in your work, please cite the following publication:\
75
+
76
+ ```bibtex
77
+ @article{freitas2012vampiro,
78
+ title={Vampiro que brilha... r{\'a}! desafios na anota{\c{c}}ao de opiniao em um corpus de resenhas de livros},
79
+ author={Freitas, C. and Motta, E. and Milidi{\'u}, R. and C{\'e}sar, J.},
80
+ journal={Encontro de Ling{\'i}stica de corpus},
81
+ volume={11},
82
+ pages={3},
83
+ year={2012}
84
+ }
85
+ ```
86
+
87
+ ### Contributions
88
+
89
+ Thanks to [@ruanchaves](https://github.com/ruanchaves) for adding this dataset.