Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,29 +1,46 @@
|
|
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: 3246469
|
17 |
-
num_examples: 6084
|
18 |
-
- name: dev
|
19 |
-
num_bytes: 356584
|
20 |
-
num_examples: 676
|
21 |
-
- name: test
|
22 |
-
num_bytes: 866291
|
23 |
-
num_examples: 1685
|
24 |
-
download_size: 879921
|
25 |
-
dataset_size: 4469344
|
26 |
---
|
27 |
-
# Dataset Card for "m0_fine_tuning_ref_cmbert_io"
|
28 |
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- fr
|
4 |
+
multilinguality:
|
5 |
+
- monolingual
|
6 |
+
task_categories:
|
7 |
+
- token-classification
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
---
|
|
|
9 |
|
10 |
+
# m0_fine_tuning_ref_cmbert_io
|
11 |
+
|
12 |
+
## Introduction
|
13 |
+
|
14 |
+
This dataset was used to fine-tuned [Jean-Baptiste/camembert-ner](https://huggingface.co/Jean-Baptiste/camembert-ner) for **flat NER task** using Flat NER approach [M0].
|
15 |
+
It contains 19th-century Paris trade directories' entries.
|
16 |
+
|
17 |
+
## Dataset parameters
|
18 |
+
|
19 |
+
* Approach : M0
|
20 |
+
* Dataset type : ground-truth
|
21 |
+
* Tokenizer : [Jean-Baptiste/camembert-ner](https://huggingface.co/Jean-Baptiste/camembert-ner)
|
22 |
+
* Tagging format : IO
|
23 |
+
* Counts :
|
24 |
+
* Train : 6084
|
25 |
+
* Dev : 676
|
26 |
+
* Test : 1685
|
27 |
+
* Associated fine-tuned model : [nlpso/m0_flat_ner_ref_cmbert_io](https://huggingface.co/nlpso/m0_flat_ner_ref_cmbert_io)
|
28 |
+
|
29 |
+
## Entity types
|
30 |
+
|
31 |
+
Abbreviation|Description
|
32 |
+
-|-
|
33 |
+
O |Outside of a named entity
|
34 |
+
PER |Person or company name
|
35 |
+
ACT |Person or company professional activity
|
36 |
+
TITRE |Distinction
|
37 |
+
LOC |Street name
|
38 |
+
CARDINAL |Street number
|
39 |
+
FT |Geographical feature
|
40 |
+
|
41 |
+
## How to use this dataset
|
42 |
+
|
43 |
+
```python
|
44 |
+
from datasets import load_dataset
|
45 |
+
|
46 |
+
train_dev_test = load_dataset("nlpso/m0_fine_tuning_ref_cmbert_io")
|