Spaces:
Runtime error
Runtime error
File size: 185 Bytes
b7718a5 |
1 2 3 4 5 6 |
from transformers import pipeline
classifier = pipeline("sentiment-analysis") #, model="stevhliu/my_awesome_model")
def acf(text1):
acfresult=classifier(text1)
return acfresult |