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