Transformers How to use Sidziesama/Legal_NER_Support_Model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Sidziesama/Legal_NER_Support_Model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Sidziesama/Legal_NER_Support_Model")
model = AutoModelForTokenClassification.from_pretrained("Sidziesama/Legal_NER_Support_Model")