nlpso commited on
Commit
dc5b968
1 Parent(s): 150d1a3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -26
README.md CHANGED
@@ -1,29 +1,51 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: tokens
5
- sequence: string
6
- - name: ner_tags
7
- sequence: string
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: 4773931
17
- num_examples: 6084
18
- - name: dev
19
- num_bytes: 523145
20
- num_examples: 676
21
- - name: test
22
- num_bytes: 1275600
23
- num_examples: 1685
24
- download_size: 976265
25
- dataset_size: 6572676
26
  ---
27
- # Dataset Card for "m2m3_qualitative_analysis_ref_ptrn_cmbert_iob2"
28
 
29
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - fr
4
+ multilinguality:
5
+ - monolingual
6
+ task_categories:
7
+ - token-classification
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ---
 
9
 
10
+ # m2m3_qualitative_analysis_ref_ptrn_cmbert_iob2
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 : IOB2
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_iob2](https://huggingface.co/nlpso/m2_joint_label_ref_ptrn_cmbert_iob2)
29
+ * M3 : [nlpso/m3_hierarchical_ner_ref_ptrn_cmbert_iob2](https://huggingface.co/nlpso/m3_hierarchical_ner_ref_ptrn_cmbert_iob2)
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_iob2")