CogSphere / acogsphere.py
CognitiveScience's picture
Update acogsphere.py
c39cc72
raw
history blame contribute delete
No virus
185 Bytes
from transformers import pipeline
classifier = pipeline("sentiment-analysis") #, model="stevhliu/my_awesome_model")
def acf(text1):
acfresult=classifier(text1)
return acfresult