Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,29 +1,51 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
- name: input_ids
|
9 |
-
sequence: int32
|
10 |
-
- name: attention_mask
|
11 |
-
sequence: int8
|
12 |
-
- name: labels
|
13 |
-
sequence: int64
|
14 |
-
splits:
|
15 |
-
- name: train
|
16 |
-
num_bytes: 4582729
|
17 |
-
num_examples: 6084
|
18 |
-
- name: dev
|
19 |
-
num_bytes: 502257
|
20 |
-
num_examples: 676
|
21 |
-
- name: test
|
22 |
-
num_bytes: 1224626
|
23 |
-
num_examples: 1685
|
24 |
-
download_size: 924671
|
25 |
-
dataset_size: 6309612
|
26 |
---
|
27 |
-
# Dataset Card for "m2m3_qualitative_analysis_ref_ptrn_cmbert_io"
|
28 |
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- fr
|
4 |
+
multilinguality:
|
5 |
+
- monolingual
|
6 |
+
task_categories:
|
7 |
+
- token-classification
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
---
|
|
|
9 |
|
10 |
+
# m2m3_qualitative_analysis_ref_ptrn_cmbert_io
|
11 |
+
|
12 |
+
## Introduction
|
13 |
+
|
14 |
+
This dataset was used to perform **qualitative analysis** of [HueyNemud/das22-10-camembert_pretrained](https://huggingface.co/HueyNemud/das22-10-camembert_pretrained) on **nested NER task** using Independant NER layers approach [M1].
|
15 |
+
It contains Paris trade directories entries from the 19th century.
|
16 |
+
|
17 |
+
## Dataset parameters
|
18 |
+
|
19 |
+
* Approachrd : M2 and M3
|
20 |
+
* Dataset type : ground-truth
|
21 |
+
* Tokenizer : [HueyNemud/das22-10-camembert_pretrained](https://huggingface.co/HueyNemud/das22-10-camembert_pretrained)
|
22 |
+
* Tagging format : IO
|
23 |
+
* Counts :
|
24 |
+
* Train : 6084
|
25 |
+
* Dev : 676
|
26 |
+
* Test : 1685
|
27 |
+
* Associated fine-tuned models :
|
28 |
+
* M2 : [nlpso/m2_joint_label_ref_ptrn_cmbert_io](https://huggingface.co/nlpso/m2_joint_label_ref_ptrn_cmbert_io)
|
29 |
+
* M3 : [nlpso/m3_hierarchical_ner_ref_ptrn_cmbert_io](https://huggingface.co/nlpso/m3_hierarchical_ner_ref_ptrn_cmbert_io)
|
30 |
+
|
31 |
+
## Entity types
|
32 |
+
|
33 |
+
Abbreviation|Entity group (level)|Description
|
34 |
+
-|-|-
|
35 |
+
O |1 & 2|Outside of a named entity
|
36 |
+
PER |1|Person or company name
|
37 |
+
ACT |1 & 2|Person or company professional activity
|
38 |
+
TITREH |2|Military or civil distinction
|
39 |
+
DESC |1|Entry full description
|
40 |
+
TITREP |2|Professionnal reward
|
41 |
+
SPAT |1|Address
|
42 |
+
LOC |2|Street name
|
43 |
+
CARDINAL |2|Street number
|
44 |
+
FT |2|Geographical feature
|
45 |
+
|
46 |
+
## How to use this dataset
|
47 |
+
|
48 |
+
```python
|
49 |
+
from datasets import load_dataset
|
50 |
+
|
51 |
+
train_dev_test = load_dataset("nlpso/m2m3_qualitative_analysis_ref_ptrn_cmbert_io")
|