Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 1.46 KB

README.md

File metadata and controls

19 lines (13 loc) · 1.46 KB

CSE4022 Natural Language Processing

Team Members

  • Arohan Mishra - 19BCE0270
  • Manas Bhardwaj - 19BCE0317
  • Aryan Blouria - 19BCE0330
  • Samarth Arora - 19BCE0334
  • Abstract

  • Customer reviews can often be long and descriptive. Analyzing these reviews manually, as you can imagine, is really time-consuming. This is where the brilliance of Natural Language Processing can be applied to generate a summary for long reviews, making it easier for the user to conclude their search.
  • Abstractive Text Summarization is the task of generating a short and concise summary that captures the salient ideas of the source text. The generated summaries potentially contain new phrases and sentences that may not appear in the source text.
  • Our objective here is to generate a summary for Amazon Fine Food reviews byimplementing the abstractive summarization using a stacked LSTM with 3 LSTM layers stacked on top of each other. This approach is better than a single-layered model since stacking multiple LSTM layers allows for a better model architecture and accuracy. In addition, we will also be using the Attention mechanism to further tackle weaknesses of the traditional LSTM model and allow it to account for differences in the importance of the input words.
  • Thus, our approach will enable the model to accept text in the English language and correspondingly produce a succinct summary while retaining the original meaning.