模型:
philschmid/distilroberta-base-ner-wikiann
任务:
标记分类许可:
apache-2.0This model is a fine-tuned version of distilroberta-base on the wikiann dataset.
eval F1-Score: 83,78 test F1-Score: 83,76
from transformers import AutoTokenizer, AutoModelForTokenClassification from transformers import pipeline tokenizer = AutoTokenizer.from_pretrained("philschmid/distilroberta-base-ner-wikiann") model = AutoModelForTokenClassification.from_pretrained("philschmid/distilroberta-base-ner-wikiann") nlp = pipeline("ner", model=model, tokenizer=tokenizer, grouped_entities=True) example = "My name is Philipp and live in Germany" nlp(example)
The following hyperparameters were used during training:
It achieves the following results on the evaluation set:
It achieves the following results on the test set: