sentiment-analysis / test_model.py
sabarish
Initial commit
e45ddff
raw
history blame contribute delete
359 Bytes
from utils.nlp_utils import analyze_sentiment
print("Testing Positive:")
print(analyze_sentiment("This is an absolutely fantastic product, highly recommend!"))
print("\nTesting Negative:")
print(analyze_sentiment("What a terrible waste of money. Completely broken."))
print("\nTesting Neutral:")
print(analyze_sentiment("The package arrived on Tuesday."))