Skip to content

Commit 0c86f84

Browse files
authored
Update main.py
1 parent bf66021 commit 0c86f84

File tree

1 file changed

+3
-3
lines changed
  • benchmark/fileprocessing/sentiment

1 file changed

+3
-3
lines changed

benchmark/fileprocessing/sentiment/main.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
def main():
77
content = store.fetch(['file'])['file']
8-
# sia = SentimentIntensityAnalyzer()
9-
# score = sia.polarity_scores(content) # can't handle large dataset
10-
time.sleep(7)
8+
sia = SentimentIntensityAnalyzer()
9+
score = sia.polarity_scores(content) # can't handle large dataset
10+
# time.sleep(7)
1111
store.put({'score': 0}, {})

0 commit comments

Comments
 (0)