bourdoiscatie
commited on
Commit
•
6fac6c0
1
Parent(s):
3317f2c
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- fr
|
4 |
+
license:
|
5 |
+
- unknown
|
6 |
+
size_categories:
|
7 |
+
- 10K<n<100K
|
8 |
+
task_categories:
|
9 |
+
- token-classification
|
10 |
+
tags:
|
11 |
+
- ner
|
12 |
+
---
|
13 |
+
|
14 |
+
# wikiann_fr_prompt_ner
|
15 |
+
## Summary
|
16 |
+
|
17 |
+
**wikiann_fr_prompt_ner** is a subset of the [**Dataset of French Prompts (DFP)**]().
|
18 |
+
It contains **X** rows that can be used for a name entity recognition task.
|
19 |
+
The original data (without prompts) comes from the dataset [wikiann](https://huggingface.co/datasets/tner/wikiann) by Pan 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 |
+
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.
|
26 |
+
|
27 |
+
```
|
28 |
+
'Extraire les classes des mots du texte suivant : '+text,
|
29 |
+
'Extrais les entitées nommées du texte suivant : '+text,
|
30 |
+
'Extrayez les entitées nommées du texte suivant : '+text,
|
31 |
+
'Isoler les entitées nommées du texte suivant : '+text,
|
32 |
+
'Isole les entitées nommées du texte suivant : '+text,
|
33 |
+
'Isolez les entitées nommées du texte suivant : '+text,
|
34 |
+
'Dégager des entitées nommées dans le texte : '+text,
|
35 |
+
'Dégage des entitées nommées dans le texte : '+text,
|
36 |
+
'Dégagez des entitées nommées dans le texte : '+text,
|
37 |
+
'Générer des entitées nommées issues du texte suivant : '+text,
|
38 |
+
'Génère des entitées nommées issues du texte suivant : '+text,
|
39 |
+
'Générez des entitées nommées issues du texte suivant : '+text,
|
40 |
+
'Trouver les entitées nommées du texte : '+text,
|
41 |
+
'Trouve les entitées nommées du texte : '+text,
|
42 |
+
'Trouvez les entitées nommées du texte : '+text,
|
43 |
+
'Repérer les entitées nommées présentes dans le texte suivant : '+text,
|
44 |
+
'Repère les entitées nommées présentes dans le texte suivant : '+text,
|
45 |
+
'Repérez les entitées nommées présentes dans le texte suivant : '+text,
|
46 |
+
'Indiquer les entitées nommées du texte :'+text,
|
47 |
+
'Indique les entitées nommées du texte : '+text,
|
48 |
+
'Indiquez les entitées nommées du texte : '+text
|
49 |
+
```
|
50 |
+
|
51 |
+
### Features used in the prompts
|
52 |
+
In the prompt list above, `text` and `targets` have been constructed from:
|
53 |
+
```
|
54 |
+
wikiann = load_dataset('tner/wikiann','fr')
|
55 |
+
wikiann['train']['tokens'] = list(map(lambda i: ' '.join(wikiann['train']['tokens'][i]), range(len(wikiann['train']['tokens']))))
|
56 |
+
wikiann['train']['tags'] = list(map(lambda x: x.replace("[","").replace("]","").replace('0','B-LOC').replace('1','B-ORG').replace('2','B-PER').replace('3','I-LOC').replace('4','I-ORG').replace('5','I-PER').replace('6','O'), map(str, wikiann['train']['tags'])))
|
57 |
+
```
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
# Splits
|
62 |
+
- train with X samples
|
63 |
+
- dev with Y samples
|
64 |
+
- test with Z samples
|
65 |
+
|
66 |
+
|
67 |
+
# How to use?
|
68 |
+
```
|
69 |
+
from datasets import load_dataset
|
70 |
+
dataset = load_dataset("CATIE-AQ/wikiann_fr_prompt_ner")
|
71 |
+
```
|
72 |
+
|
73 |
+
# Citation
|
74 |
+
## Original data
|
75 |
+
> @inproceedings{pan-etal-2017-cross,
|
76 |
+
title = "Cross-lingual Name Tagging and Linking for 282 Languages",
|
77 |
+
author = "Pan, Xiaoman and Zhang, Boliang and May, Jonathan and Nothman, Joel and Knight, Kevin and Ji, Heng",
|
78 |
+
booktitle = "Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
|
79 |
+
month = jul,
|
80 |
+
year = "2017",
|
81 |
+
address = "Vancouver, Canada",
|
82 |
+
publisher = "Association for Computational Linguistics",
|
83 |
+
url = "https://aclanthology.org/P17-1178",
|
84 |
+
doi = "10.18653/v1/P17-1178",
|
85 |
+
pages = "1946--1958"
|
86 |
+
}
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
## This Dataset
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
## License
|
95 |
+
Unknow
|