Views
No views yet
| Abbreviation | Description |
|---|---|
| O | Outside of a named entity |
| PER | Person or company name |
| ACT | Person or company professional activity |
| TITRE | Distinction |
| LOC | Street name |
| CARDINAL | Street number |
| FT | Geographical feature |
1from transformers import AutoTokenizer, AutoModelForTokenClassification
2
3tokenizer = AutoTokenizer.from_pretrained("nlpso/m0_flat_ner_ref_cmbert_io")
4model = AutoModelForTokenClassification.from_pretrained("nlpso/m0_flat_ner_ref_cmbert_io")