Instructions to use vblagoje/bert-english-uncased-finetuned-pos with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vblagoje/bert-english-uncased-finetuned-pos with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="vblagoje/bert-english-uncased-finetuned-pos")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("vblagoje/bert-english-uncased-finetuned-pos") model = AutoModelForTokenClassification.from_pretrained("vblagoje/bert-english-uncased-finetuned-pos") - Inference
- Notebooks
- Google Colab
- Kaggle
Model result always with lower casing tags.
#1
by andersonmg - opened
Hi!
I am running the model for token classification, and the results are always in a lower case, even though there are some characters in the upper case on input. How can I solve this?