Skip to content

Commit

Permalink
Removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
dianzrong committed May 2, 2023
1 parent 9c570fd commit b897ac8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions puterbot/strategies/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,8 @@ def compare_text(
summarizer = LsaSummarizer(stemmer)
summarizer.stop_words = get_stop_words("english")

print(text1)
parser1 = PlaintextParser.from_string(text1, Tokenizer("english"))
summarized1 = summarizer(parser1.document, 1)
print(summarized1)

parser2 = PlaintextParser.from_string(text2, Tokenizer("english"))
summarized2 = summarizer(parser2.document, 1)
Expand Down

0 comments on commit b897ac8

Please sign in to comment.