Initial upload: Sentimotion_v1 cc2bee6
Arafat Hossain Fahim commited on
How to use arafatfahim/sentimotion with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="arafatfahim/sentimotion") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("arafatfahim/sentimotion", dtype="auto")