def interpret_prediction()

in distilbert-base-uncased.py [0:0]


def interpret_prediction(prediction):
    sentiment=["Negative Sentiment", "Positive Sentiment"]
    return sentiment[prediction[0]]