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