bourdoiscatie's picture
Update README.md
c825cca
|
raw
history blame
3.85 kB
---
language:
- fr
license:
- other
size_categories:
- 10K<n<100K
task_categories:
- text-generation
tags:
- paraphrase-generation
---
# paws-x_fr_prompt_paraphrase_generation
## Summary
**paws-x_fr_prompt_paraphrase_generation** is a subset of the [**Dataset of French Prompts (DFP)**]().
It contains **X** rows that can be used for a paraphrase generation task.
The original data (without prompts) comes from the dataset [paws-x](https://huggingface.co/datasets/paws-x) by Yang et al. where only the French part has been kept.
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.
## Prompts used
### List
24 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.
```
'Générer une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Génère une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Générez une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Paraphraser la phrase suivante : "'+sentence1+'"',
'Paraphrase la phrase suivante : "'+sentence1+'"',
'Paraphrasez la phrase suivante : "'+sentence1+'"',
'Créer une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Crée une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Créez une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Créer une paraphrase de la phrase suivante : "'+sentence1+'"',
'Crée une paraphrase de la phrase suivante : "'+sentence1+'"',
'Créez une paraphrase de la phrase suivante : "'+sentence1+'"',
'Ecrire une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Ecris une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Ecrivez une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Ecrire une paraphrase de la phrase suivante : "'+sentence1+'"',
'Ecris une paraphrase de la phrase suivante : "'+sentence1+'"',
'Ecrivez une paraphrase de la phrase suivante : "'+sentence1+'"',
'Rédiger une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Rédige une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Rédigez une phrase qui signifie la même chose que celle-ci : "'+sentence1+'"',
'Rédiger une paraphrase de la phrase suivante : "'+sentence1+'"',
'Rédige une paraphrase de la phrase suivante : "'+sentence1+'"',
'Rédigez une paraphrase de la phrase suivante : "'+sentence1+'"'
```
### Features used in the prompts
In the prompt list above, `sentence1` and the `target` have been constructed from:
```
paws_x = load_dataset('paws-x','fr')
if paws_x['train'][i]['label'] == 1:
sentence1 = paws_x['train'][i]['sentence1']
targets = paws_x['train'][i]['sentence2']
```
# Splits
- train with X samples
- dev with Y samples
- test with Z samples
# How to use?
```
from datasets import load_dataset
dataset = load_dataset("CATIE-AQ/paws-x_fr_prompt_paraphrase_generation")
```
# Citation
## Original data
> @InProceedings{pawsx2019emnlp,
title = {{PAWS-X: A Cross-lingual Adversarial Dataset for Paraphrase Identification}},
author = {Yang, Yinfei and Zhang, Yuan and Tar, Chris and Baldridge, Jason},
booktitle = {Proc. of EMNLP},
year = {2019}
}
## This Dataset
# License
The dataset may be freely used for any purpose, although acknowledgement of Google LLC ("Google") as the data source would be appreciated. The dataset is provided "AS IS" without any warranty, express or implied. Google disclaims all liability for any damages, direct or indirect, resulting from the use of the dataset.