bourdoiscatie commited on
Commit
ceee8bc
1 Parent(s): 6fc4a16

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - fr
4
+ license: other
5
+ size_categories:
6
+ - 10K<n<100K
7
+ task_categories:
8
+ - text-classification
9
+ ---
10
+
11
+ # amazon_review_multi_fr_prompt_classes_classification
12
+ ## Summary
13
+
14
+ **amazon_review_multi_fr_prompt_classes_classification** is a subset of the [**Dataset of French Prompts (DFP)**]().
15
+ It contains **48,069** rows that can be used for a text classification task.
16
+ 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 split has been kept.
17
+ 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.
18
+
19
+
20
+ ## Prompts used
21
+ ### List
22
+ 21 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.
23
+
24
+ ```
25
+ 'Le texte suivant parle-t-il de "'+classes+'" ?\n Texte : '+text,
26
+ 'Le texte suivant concerne-t-il "'+classes+'" ?\n Texte : '+text,
27
+ 'Le texte suivant évoque-t-il "'+classes+'" ?\n Texte : '+text,
28
+ text+'\n Étant donné la liste de catégories suivante : "'+classes+'" à quelle catégorie appartient le texte ?',
29
+ text+'\n Étant donné la liste de classes suivante : "'+classes+'" à quelle classe appartient le texte ?',
30
+ 'Étant donné une liste de catégories : "'+classes+'" à quelle catégorie appartient le texte suivant ?\n Texte : '+text,
31
+ 'Étant donné une liste de classes : "'+classes+'" à quelle classe appartient le texte suivant ?\n Texte : '+text,
32
+ 'Étant donné un choix de catégories : "'+classes+'", le texte fait référence à laquelle ?\n Texte : '+text,
33
+ 'Étant donné un choix de classe : "'+classes+'", le texte fait référence à laquelle ?\n Texte : '+text,
34
+ 'Choisir une catégorie pour le texte suivant. Les options sont les suivantes : "'+classes+'"\n Texte : '+text,
35
+ 'Choisir une catégorie pour le texte suivant. Les possibilités sont les suivantes : "'+classes+'"\n Texte : '+text,
36
+ 'Choisir une catégorie pour le texte suivant. Les choix sont les suivants : "'+classes+'"\n Texte : '+text,
37
+ 'Choisir une classe pour le texte suivant. Les options sont les suivantes : "'+classes+'"\n Texte : '+text,
38
+ 'Choisir une classe pour le texte suivant. Les possibilités sont les suivantes : "'+classes+'"\n Texte : '+text,
39
+ 'Choisir une classe pour le texte suivant. Les choix sont les suivants : "'+classes+'"\n Texte : '+text,
40
+ 'Sélectionner une catégorie pour le texte suivant. Les options sont les suivantes : "'+classes+'"\n Texte : '+text,
41
+ 'Sélectionner une catégorie pour le texte suivant. Les possibilités sont les suivantes : "'+classes+'"\n Texte : '+text,
42
+ 'Sélectionner une catégorie pour le texte suivant. Les choix sont les suivants : "'+classes+'"\n Texte : '+text,
43
+ 'Sélectionner une classe pour le texte suivant. Les options sont les suivantes : "'+classes+'"\n Texte : '+text,
44
+ 'Sélectionner une classe pour le texte suivant. Les possibilités sont les suivantes : "'+classes+'"\n Texte : '+text,
45
+ 'Sélectionner une classe pour le texte suivant. Les choix sont les suivants : "'+classes+'"\n Texte : '+text
46
+ ```
47
+
48
+ ### Features used in the prompts
49
+ In the prompt list above, `text` and `targets` have been constructed from:
50
+ ```
51
+ arm = load_dataset('amazon_reviews_multi', 'fr')
52
+ text = arm['train']['review_body'][i]
53
+ targets = arm['train']['product_category'][i].replace('personal_care_appliances','appareils_de_soins_personnels').replace('beauty','beauté').replace('lawn_and_garden','pelouse_et_jardin').replace('digital_ebook_purchase','livres_numériques').replace('musical_instruments','instruments').replace('watch','montre').replace('other','autre').replace('jewelry','bijou').replace('automotive','automobile').replace('apparel','vêtement').replace('video_games','jeux_vidéos').replace('toy','jeux').replace('luggage', 'bagages').replace('pet_products', 'produits_animaux').replace('electronics','électroniques').replace('office_product','produit_bureau').replace('drugstore','pharmacie').replace('camera','appareil_photo').replace('home','maison').replace('furniture','meubles').replace('book','livre').replace('wireless','sans_fil').replace('grocery','épicerie').replace('industrial_supplies','fournitures_industrielles').replace('kitchen','cuisine').replace('baby_product','produit_bébé').replace('shoes','chaussures').replace('home_improvement','amélioration_de_la_maison')
54
+ ```
55
+
56
+
57
+
58
+ # Splits
59
+ - train with 48,069 samples
60
+ - no valid and test splits in the original data
61
+
62
+
63
+ # How to use?
64
+ ```
65
+ from datasets import load_dataset
66
+ dataset = load_dataset("CATIE-AQ/amazon_review_multi_fr_prompt_text_generation")
67
+ ```
68
+
69
+ # Citation
70
+ ## Original data
71
+ > @inproceedings{marc_reviews,
72
+ title={The Multilingual Amazon Reviews Corpus},
73
+ author={Keung, Phillip and Lu, Yichao and Szarvas, György and Smith, Noah A.},
74
+ booktitle={Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing},
75
+ year={2020}
76
+ }
77
+
78
+
79
+
80
+
81
+ ## This Dataset
82
+
83
+
84
+
85
+ ## License
86
+ Amazon has licensed his 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: https://docs.opendata.aws/amazon-reviews-ml/license.txt
87
+
88
+ 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 and you agree to be bound by them, with the following additional conditions:
89
+
90
+ 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.