aCogSphereE / acogsphere.py
CognitiveScience's picture
Create acogsphere.py
b7718a5
from transformers import pipeline
classifier = pipeline("sentiment-analysis") #, model="stevhliu/my_awesome_model")
def acf(text1):
acfresult=classifier(text1)
return acfresult