-
-
Save saprativa/b5cb639e0c035876e0dd3c46e5a380fd to your computer and use it in GitHub Desktop.
its gives Extractive summarization. and not Abstarctive.
For extractive there are many easy algos which give good accuracy like gensim, luhn etc
its gives Extractive summarization. and not Abstarctive. FOr extractive there are many easy algos which give good accuracy like gensim, luhn etc
yeah I also observed that have you found out why and any other alternatives for abstractive summarization?
Yes, Google's pegasus model is the state-of-the-art pre-trained model for abstractive text summarization.
Yes, Google's pegasus model is the state-of-the-art pre-trained model for abstractive text summarization.
I tried that too, I tried the pegasus model pretrained on cnn dataset available in huggingface. but its is also giving extractive results. If you have seen abstractive results could you please share that notebook or code.
Yes, Google's pegasus model is the state-of-the-art pre-trained model for abstractive text summarization.
I tried that too, I tried the pegasus model pretrained on cnn dataset available in huggingface. but its is also giving extractive results. If you have seen abstractive results could you please share that notebook or code.
Yes, i used the pretrained model from the below link , and it output the abstractive summaries.
https://towardsdatascience.com/how-to-perform-abstractive-summarization-with-pegasus-3dd74e48bafb
This link also has the fine tuning code , i fine tuned pegasus on my legal text dataset, but im unable to predict the summaries and evaluate the model. if you find or write the code share it with me as well.
Yes, the Google's pegasus model is the state-of-the-art pre-trained model for abstractive text summarization.
I tried that too, I tried the pegasus model pretrained on cnn dataset available in huggingface. but its is also giving extractive results. If you have seen abstractive results could you please share that notebook or code.
Yes, the Google's pegasus model is the state-of-the-art pre-trained model for abstractive text summarization.
I tried that too, I tried the pegasus model pretrained on cnn dataset available in huggingface. but its is also giving extractive results. If you have seen abstractive results could you please share that notebook or code.
For anyone who may run into an error when trying to download punkt
, replace it with punkt_tab
and that should fix it.
Thank you very nice :)