We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf66021 commit 0c86f84Copy full SHA for 0c86f84
benchmark/fileprocessing/sentiment/main.py
@@ -5,7 +5,7 @@
5
6
def main():
7
content = store.fetch(['file'])['file']
8
- # sia = SentimentIntensityAnalyzer()
9
- # score = sia.polarity_scores(content) # can't handle large dataset
10
- time.sleep(7)
+ sia = SentimentIntensityAnalyzer()
+ score = sia.polarity_scores(content) # can't handle large dataset
+ # time.sleep(7)
11
store.put({'score': 0}, {})
0 commit comments