summarizer
summarizer copied to clipboard
Text Summarization using LSA in Apache Spark
Results
1
summarizer issues
Sort by
recently updated
recently updated
newest added
https://github.com/iamprem/summarizer/blob/373aedfee1526dfa6ebd5a4789371e9f3140c61b/lsa.py#L43 In the code: `idfvector = numpy.array(numpy.transpose(idfvector)) ` both np.transpose() and np.array() return a NumPy array, so wrapping the result of np.transpose() in np.array() is redundant and causes unnecessary memory...