leondz/wnut_17
Updated • 4.23k • 19
How to use cwchang/ner_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="cwchang/ner_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("cwchang/ner_model")
model = AutoModelForTokenClassification.from_pretrained("cwchang/ner_model")This model is a fine-tuned version of distilbert-base-multilingual-cased on the wnut_17 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training: