NaiveSumm icon indicating copy to clipboard operation
NaiveSumm copied to clipboard

NaiveSumm is a naive summarization approach based on Luhn1958 work "The Automatic Creation of Literature Abstracts" It uses the frequencies of words in the document in order to calculate and extra...

Results 1 NaiveSumm issues
Sort by recently updated
recently updated
newest added

if (lowercase_sentences[i] not in summ_sentences and word in lowercase_sentences[i]): lowercase_sentences[i] will never be in summ_sentences because the latter is not lower case. This one produces some duplicate strings in output....

bug