Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -14,7 +14,7 @@ widget:
|
|
14 |
|
15 |
## Introduction
|
16 |
|
17 |
-
This model is a fine-tuned verion from [Jean-Baptiste/camembert-ner](https://huggingface.co/
|
18 |
|
19 |
## Dataset
|
20 |
|
@@ -33,7 +33,7 @@ FT |2|Geographical feature
|
|
33 |
|
34 |
## Experiment parameter
|
35 |
|
36 |
-
* Pretrained-model : [Jean-Baptiste/camembert-ner](https://huggingface.co/
|
37 |
* Dataset : ground-truth
|
38 |
* Tagging format : IO
|
39 |
* Recognised entities : 'All'
|
@@ -43,7 +43,7 @@ FT |2|Geographical feature
|
|
43 |
```python
|
44 |
from transformers import AutoTokenizer, AutoModelForTokenClassification
|
45 |
|
46 |
-
tokenizer = AutoTokenizer.from_pretrained("m2_joint_label_ref_ptrn_cmbert_io")
|
47 |
-
model = AutoModelForTokenClassification.from_pretrained("m2_joint_label_ref_ptrn_cmbert_io")
|
48 |
|
49 |
|
|
|
14 |
|
15 |
## Introduction
|
16 |
|
17 |
+
This model is a fine-tuned verion from [Jean-Baptiste/camembert-ner](https://huggingface.co/Jean-Baptiste/camembert-ner) for **nested NER task** on a nested NER Paris trade directories dataset.
|
18 |
|
19 |
## Dataset
|
20 |
|
|
|
33 |
|
34 |
## Experiment parameter
|
35 |
|
36 |
+
* Pretrained-model : [Jean-Baptiste/camembert-ner](https://huggingface.co/Jean-Baptiste/camembert-ner)
|
37 |
* Dataset : ground-truth
|
38 |
* Tagging format : IO
|
39 |
* Recognised entities : 'All'
|
|
|
43 |
```python
|
44 |
from transformers import AutoTokenizer, AutoModelForTokenClassification
|
45 |
|
46 |
+
tokenizer = AutoTokenizer.from_pretrained("nlpso/m2_joint_label_ref_ptrn_cmbert_io")
|
47 |
+
model = AutoModelForTokenClassification.from_pretrained("nlpso/m2_joint_label_ref_ptrn_cmbert_io")
|
48 |
|
49 |
|