How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("token-classification", model="Wanjiru/bert-base-multilingual_en_ner_")
# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification

tokenizer = AutoTokenizer.from_pretrained("Wanjiru/bert-base-multilingual_en_ner_")
model = AutoModelForTokenClassification.from_pretrained("Wanjiru/bert-base-multilingual_en_ner_")
Quick Links

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

Label ID Label Name 0 0

  1.         B-PER
    
  2.         I-PER
    
  3.         B-ORG
    
  4.         I-ORG
    
  5.         B-LOC
    
  6.         I-LOC
    
Downloads last month
5
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support