mirror of
https://github.com/Steffo99/unimore-bda-6.git
synced 2024-11-22 16:04:18 +00:00
14 lines
206 B
Python
14 lines
206 B
Python
import nltk
|
|
import nltk.sentiment
|
|
|
|
|
|
def create_sentiment_analysis_model() -> ntlk.sentiment.SentimentAnalyzer:
|
|
analyzer = nltk.sentiment.SentimentAnalyzer()
|
|
|
|
|
|
def train():
|
|
...
|
|
|
|
|
|
def test():
|
|
...
|