You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.