bourdoiscatie commited on
Commit
32bd744
1 Parent(s): bd1f962

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - fr
4
+ license:
5
+ - other
6
+ size_categories:
7
+ - 10K<n<100K
8
+ task_categories:
9
+ - text-classification
10
+ tags:
11
+ - stars-classification
12
+ ---
13
+
14
+ # amazon_review_multi_fr_prompt_stars_classification
15
+ ## Summary
16
+
17
+ **amazon_review_multi_fr_prompt_stars_classification** is a subset of the [**Dataset of French Prompts (DFP)**]().
18
+ It contains **X** rows that can be used for a stars-classification sentiment analysis task.
19
+ The original data (without prompts) comes from the dataset [amazon_reviews_multi](https://huggingface.co/datasets/amazon_reviews_multi) by Keung et al. where only the French part has been kept.
20
+ A list of prompts (see below) was then applied in order to build the input and target columns and thus obtain the same format as the [xP3](https://huggingface.co/datasets/bigscience/xP3) dataset by Muennighoff et al.
21
+
22
+
23
+ ## Prompts used
24
+ ### List
25
+ 28 prompts were created for this dataset. The logic applied consists in proposing prompts in the indicative tense, in the form of tutoiement and in the form of vouvoiement.
26
+
27
+ ```
28
+ 'Commentaire : "'+review+'" Le commentaire est-il positif ou négatif ?',
29
+ """Avis : " """+review+""" " L'avis est-il positif ou négatif ?""",
30
+ 'Critique : "'+review+'" La critique est-elle positive ou négative ?',
31
+ """Evaluation : " """+review+""" " L'évaluation est-elle positive ou négative ?""",
32
+ 'Ce commentaire sur le produit est-il positif ou négatif ? \nCommentaire : "'+review+'"\nRéponse :',
33
+ 'Cet avis sur le produit est-il positif ou négatif ? \nAvis : "'+review+'"\nRéponse :',
34
+ 'Cette critique sur le produit est-elle positive ou négative ? \nCritique : "'+review+'"\nRéponse :',
35
+ 'Cette évaluation sur le produit est-elle positive ou négative ? \nEvaluation : "'+review+'"\nRéponse :',
36
+ 'Commentaire : "'+review+'"\n Ce commentaire sur le produit exprime-t-il un sentiment négatif ou positif ?',
37
+ 'Avis : "'+review+'"\n Cet avis sur le produit exprime-t-il un sentiment négatif ou positif ?',
38
+ 'Critique : "'+review+'"\n Cette critique sur le produit exprime-t-il un sentiment négatif ou positif ?',
39
+ 'Evaluation : "'+review+'"\n Cette évaluation sur le produit exprime-t-il un sentiment négatif ou positif ?',
40
+ 'Ce commentaire sur le produit a-t-il un ton négatif ou positif ? \n Commentaire : "'+review+'"\n Réponse :',
41
+ 'Cet avis sur le produit a-t-il un ton négatif ou positif ? \n Avis : "'+review+'"\n Réponse :',
42
+ 'Cette critique sur le produit a-t-il un ton négatif ou positif ? \n Evaluation : "'+review+'"\n Réponse :',
43
+ 'Cet évaluation sur le produit a-t-il un ton négatif ou positif ? \n Avis : "'+review+'"\n Réponse :',
44
+ """Voici un commentaire laissé par un client sur un produit. Diriez-vous qu'il est négatif ou positif ? \nCommentaire : """+review,
45
+ """Voici un avis laissé par un client sur un produit. Diriez-vous qu'il est négatif ou positif ? \nAvis : """+review,
46
+ """Voici une critique laissée par un client sur un produit. Diriez-vous qu'elle est négative ou positive ? \nCritique : """+review,
47
+ """Voici une évaluation laissée par un client sur un produit. Diriez-vous qu'elle est négative ou positive ? \nEvaluation : """+review,
48
+ 'Commentaire du produit : "'+review+'" Ce commentaire dépeint le produit sous un angle négatif ou positif ?',
49
+ 'Avis du produit : "'+review+'" Cet avis dépeint le produit sous un angle négatif ou positif ?',
50
+ 'Critique du produit : "'+review+'" Cette critique dépeint le produit sous un angle négatif ou positif ?',
51
+ 'Evaluation du produit : "'+review+'" Cette évaluation dépeint le produit sous un angle négatif ou positif ?',
52
+ 'Le commentaire suivant exprime quel sentiment ?\n Commentaire' +review,
53
+ """L'avis suivant exprime quel sentiment ?\n Avis""" +review,
54
+ 'La critique suivante exprime quel sentiment ?\n Critique' +review,
55
+ """L'évaluation suivante exprime quel sentiment ?\n Evaluation""" +review
56
+ ```
57
+
58
+ ### Features used in the prompts
59
+ In the prompt list above, `review` and `targets` have been constructed from:
60
+ ```
61
+ arm = load_dataset('amazon_reviews_multi', 'fr')
62
+ review = arm['train']['review_body'][i]
63
+ targets = arm['train']['stars'][i]
64
+
65
+ ```
66
+
67
+
68
+
69
+ # Splits
70
+ - train with X samples
71
+ - dev with Y samples
72
+ - test with Z samples
73
+
74
+
75
+ # How to use?
76
+ ```
77
+ from datasets import load_dataset
78
+ dataset = load_dataset("CATIE-AQ/amazon_reviews_multi_fr_prompt_stars_classification")
79
+ ```
80
+
81
+ # Citation
82
+ ## Original data
83
+ > @inproceedings{marc_reviews,
84
+ title={The Multilingual Amazon Reviews Corpus},
85
+ author={Keung, Phillip and Lu, Yichao and Szarvas, György and Smith, Noah A.},
86
+ booktitle={Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing},
87
+ year={2020}
88
+ }
89
+
90
+
91
+ ## This Dataset
92
+
93
+
94
+
95
+ ## License
96
+ Amazon has licensed this dataset under its own agreement for non-commercial research usage only. This licence is quite restrictive preventing use anywhere a fee is received including paid for internships etc. A copy of the agreement can be found at the dataset webpage here:
97
+ https://docs.opendata.aws/amazon-reviews-ml/license.txt
98
+
99
+ By accessing the Multilingual Amazon Reviews Corpus ("Reviews Corpus"), you agree that the Reviews Corpus is an Amazon Service subject to the [Amazon.com Conditions of Use](https://www.amazon.com/gp/help/customer/display.html/ref=footer_cou?ie=UTF8&nodeId=508088) and you agree to be bound by them, with the following additional conditions:
100
+
101
+ In addition to the license rights granted under the Conditions of Use, Amazon or its content providers grant you a limited, non-exclusive, non-transferable, non-sublicensable, revocable license to access and use the Reviews Corpus for purposes of academic research. You may not resell, republish, or make any commercial use of the Reviews Corpus or its contents, including use of the Reviews Corpus for commercial research, such as research related to a funding or consultancy contract, internship, or other relationship in which the results are provided for a fee or delivered to a for-profit organization. You may not (a) link or associate content in the Reviews Corpus with any personal information (including Amazon customer accounts), or (b) attempt to determine the identity of the author of any content in the Reviews Corpus. If you violate any of the foregoing conditions, your license to access and use the Reviews Corpus will automatically terminate without prejudice to any of the other rights or remedies Amazon may have.