Hi is there a way I can display just the tag_name using MonkeyLearn instead of a full text? Here is the code
from monkeylearn import MonkeyLearn
ml = MonkeyLearn('xxxx')
classifier = ['text']
model_id = 'xxxx'
response = ml.classifiers.classify(model_id, data)
print(response.body)
I have tried using print(response.classifications) but I get and error saying that
'MonkeyLearnResponse' object has no attribute 'classifications'