nlpso commited on
Commit
ae448c4
1 Parent(s): bda1cee

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -30
README.md CHANGED
@@ -1,33 +1,51 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: tokens
5
- sequence: string
6
- - name: ner_tags_niv1
7
- sequence: string
8
- - name: ner_tags_niv2
9
- sequence: string
10
- - name: input_ids
11
- sequence: int32
12
- - name: attention_mask
13
- sequence: int8
14
- - name: labels_niv1
15
- sequence: int64
16
- - name: labels_niv2
17
- sequence: int64
18
- splits:
19
- - name: train
20
- num_bytes: 6312919
21
- num_examples: 6084
22
- - name: dev
23
- num_bytes: 691832
24
- num_examples: 676
25
- - name: test
26
- num_bytes: 1683259
27
- num_examples: 1685
28
- download_size: 1069679
29
- dataset_size: 8688010
30
  ---
31
- # Dataset Card for "m1_qualitative_analysis_ref_cmbert_iob2"
32
 
33
- [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
+ # m1_qualitative_analysis_ref_cmbert_iob2
11
+
12
+ ## Introduction
13
+
14
+ This dataset was used to perform **qualitative analysis** of [Jean-Baptiste/camembert-ner](https://huggingface.co/Jean-Baptiste/camembert-ner) 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
+ * Approach : M1
20
+ * Dataset type : ground-truth
21
+ * Tokenizer : [Jean-Baptiste/camembert-ner](https://huggingface.co/Jean-Baptiste/camembert-ner)
22
+ * Tagging format : IOB2
23
+ * Counts :
24
+ * Train : 6084
25
+ * Dev : 676
26
+ * Test : 1685
27
+ * Associated fine-tuned models :
28
+ * Level-1 : [nlpso/m1_ind_layers_ref_cmbert_iob2_level_1](https://huggingface.co/nlpso/m1_ind_layers_ref_cmbert_iob2_level_1)
29
+ * Level 2 : [nlpso/m1_ind_layers_ref_cmbert_iob2_level_2](https://huggingface.co/nlpso/m1_ind_layers_ref_cmbert_iob2_level_2)
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/m1_qualitative_analysis_ref_cmbert_iob2")