1
Fork 0
mirror of https://github.com/Steffo99/unimore-bda-6.git synced 2024-11-25 17:24:20 +00:00
bda-6-steffo/unimore_bda_6/analysis.py

15 lines
206 B
Python
Raw Normal View History

2023-02-01 03:20:09 +00:00
import nltk
import nltk.sentiment
def create_sentiment_analysis_model() -> ntlk.sentiment.SentimentAnalyzer:
analyzer = nltk.sentiment.SentimentAnalyzer()
def train():
...
def test():
...