How to use Mhammad2023/bert-finetuned-ner-torch with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="Mhammad2023/bert-finetuned-ner-torch")
# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Mhammad2023/bert-finetuned-ner-torch") model = AutoModelForTokenClassification.from_pretrained("Mhammad2023/bert-finetuned-ner-torch")
The community tab is the place to discuss and collaborate with the HF community!