Thank You for share this live coding to get some idea
@KGPTalkie Жыл бұрын
Your welcome 😊
@Dr.G.Parthasarathy Жыл бұрын
Excellent
@ijeffking4 жыл бұрын
Simple and useful tips. Thank you .
@KGPTalkie4 жыл бұрын
Thanks.
@edwinho75624 жыл бұрын
Hi thank you for the video but I can't seem to find the working code in the video description. Could you please provide the link? Thank you.
@rogeriovaz57792 жыл бұрын
Fantastic. Congratulations and thanks!
@tacklewithtricksbykajala.42314 жыл бұрын
Where is the link of blog
@srijitasaharoy22283 жыл бұрын
Instead of text, how can I summarize the contents of pdf file? say 100 page pdf
@jeremyheng85732 жыл бұрын
very good explaination
@PalaniRamu13 жыл бұрын
Thanks for explanation, its too good
@KGPTalkie3 жыл бұрын
Thank you
@lucammt4 жыл бұрын
Hi, i wanted to ask something. I need to use this function in a chrome extension. How can i add this to that project whit javascript? Thanks a lot!
@solidname9085 Жыл бұрын
how to build text summerization like chatgpt
@prajwal_37222 жыл бұрын
Did you compare both by sentiment analyser for the score ?
@hemantbhatta18214 жыл бұрын
Thank you sir.Most awesome videos.Make videos.Keep going.
@KGPTalkie4 жыл бұрын
Thanks
@BiranchiNarayanNayak4 жыл бұрын
Excellent tutorial.
@KGPTalkie4 жыл бұрын
Thanks
@mdwaquarazam20262 жыл бұрын
Great job 👍
@jatinsuthar76862 жыл бұрын
i think it is not working correcly. if there are similar multiple sentances in the text then all the similar sentances are occuring in the summary text
@meghanamengani52542 жыл бұрын
May I know the algorithm used here
@RuchiSharma-hv2xk2 жыл бұрын
link for blog is not working
@DipakTripathi4 жыл бұрын
Could you please make a video on Abstractive Text Summarization
@KGPTalkie4 жыл бұрын
Yeah sure. I will try
@shivnarayanswarnkar29123 жыл бұрын
amazin sir thanks i have subscribed your channel
@Nedwin3 жыл бұрын
Amazing sharing. Thanks, man! 👍
@toobasaman68573 жыл бұрын
Can you please tell me which software are you using?
@ozer1443 жыл бұрын
i think it is not useful text summarization method. You should inspect "summary sentence" in paragraphs or text. This improve your accuracy.
@breathemusic52603 жыл бұрын
What is the name of this method used?
@ayush.pratap.singh.4 жыл бұрын
Hey, Really great example. is it possible to get the score of the summary of the model that is used here?
@kadhiresannarayanaswamy73483 жыл бұрын
use tools like ROUGE
@breathemusic52603 жыл бұрын
is it called term frequency method?
@souravpandey84213 жыл бұрын
getting key error while generating the summary
@arjr6784 жыл бұрын
Great Video!!
@harshavardhan45234 жыл бұрын
If we give the input as conversation between two people ..... will this code work??
@noura47013 жыл бұрын
Great tutorial! I have a question. why do we need to normalize the frequencies by dividing by the largest frequency? how is this useful and would it make a difference if we did not normalize the frequencies? 14:10 thank you
@maxisqt3 жыл бұрын
I've got an MSc in Machine Learning, we normalise our features when we have a dataset with features of varying scale (magnitude). This is to maintain the underlying distribution of data (not disturbing the ranges encompassed by each feature) whilst placing all features on the same scale from 0 to 1. This is only necessary for datasets with features of varying scales. It's been observed to improve the performance / accuracy of models, there are probably a lot of reasons why but the one that logically makes sense to me is if you have two features, one is on a scale of 0 to 1, and the other is on a scale of 0 to 1000, the variation in the second feature accounts for the majority of the variation in the dataset and an ML model might overvalue feature two and undervalue feature 1, as we humans would do, but this is not how data works in reality. I haven't watched the video yet so I'm not sure if my explanation is relevant, and I'm happy for others to correct me if I'm wrong.
@karthikgangula3692 жыл бұрын
I also had the same doubt as to why he used largest frequency instead or total count of all the frequencies. So I did the summary using both the techniques and what I found was that the summary was exactly the same. However, Im not sure why that's the case.
@noura47012 жыл бұрын
@@maxisqt really helpful! Thank you so much
@MuhammadAli-ie7ps4 жыл бұрын
and which software you are using here in video, can you please tell me.
@KGPTalkie4 жыл бұрын
it’s jupyter notebook
@riyapal97313 жыл бұрын
Is this extractive summarization or abstractive summarization???
@Investerbro3 жыл бұрын
nlp project how to find last updated text
@Steve-vl9vr3 жыл бұрын
how to save this model using pickle. please make a video
@hakunamatata-qu7ft4 жыл бұрын
Bro I need time series forecasting prediction and complete about time series,so please make videos on time series
@SalkaRahman3 жыл бұрын
if possible.could you please make a video on handwritten text recognition using nlp.
@anuraggupta324 жыл бұрын
This summarization is based on frequency and scoring. Is there a summarization based on quality of content which has more meaning
@cristopherabalorio85623 жыл бұрын
the video is extractive summarization. I think you are referring to abstractive which uses RNN
@breathemusic52603 жыл бұрын
can you please provide this PPT in discription Box? plzz
@deepak1610914 жыл бұрын
Hi Sir, Here you are using already built model from spacy. Could you please upload a video on how to create a model using ML.
@shwetatiwari53552 жыл бұрын
Yes, please
@soumyabrata1114 жыл бұрын
Lovely
@tohelpothers97673 жыл бұрын
sir give code link
@cool_videos60164 жыл бұрын
i am not able to install en_core_web_sm can anyone help
@KGPTalkie4 жыл бұрын
What's error?
@anujsaboo70814 жыл бұрын
This solution will not give correct results since you are not maintaining order. If a sentence later on scores more it will come first in summary giving a result with broken meaning
@KGPTalkie4 жыл бұрын
Thanks Anuj for your suggestion. You are right. One way to keep this in order is you can keep the indices of selected sentences and then select these sentences from the original text in the same order.
@usamaali78334 жыл бұрын
How is this a summary when you get exactly the first paragraph and ignore everything else?
@rishabhkapoor55364 жыл бұрын
12 th entire cell can be replaced with --> from collections import Counter word_frequencies=Counter(word.text)
@teddyx23644 жыл бұрын
rishabh kapoor doesn’t work for me. It only counts single letters and signs. In this case need to first separate each word from the paragraph string
@hakunamatata-qu7ft4 жыл бұрын
thank you bhai, can you also make topic modelling from scratch
@KGPTalkie4 жыл бұрын
Thanks for watching. I will try for sure.
@deepak1610914 жыл бұрын
indeed
@bharatchandra25124 жыл бұрын
when i opened github.com/laxmimerit/NLP-Tutorial-12---Text-Summarization-using-NLP it's telling that the page is not found so pleaselook into this brother
@KGPTalkie4 жыл бұрын
Hi, This is in regard to the code file which you requested for different topics.I request you to please get enrolled yourself and show your support and love to KGP Talkie. All the code files and video lectures have lifetime access with 30 Days money back Guarantee. Code and question-answer support are also available at Udemy. Code files of KZbin lectures will be also available once you register in this course. Please send an email to udemy@kgptalkie.com with your registration details of this course and a list of other code files that you want. I promise you to give FREE COUPONS for the next course on Deep Learning and ML. You can click on the link mentioned below and can get yourself enrolled!! bit.ly/udemy95off_kgptalkie New content is added at Udemy: 1. Animation Plot [2 lectures] 2. Python Coding in Mobile [5 lectures] 3. Complete EDA of Boston Dataset [20 lectures] What else we promise in this course 1. Kaggle data EDA 2. Text data EDA 3. More Animation Plot 4. More 3D plots 5. Figure Aesthetics and Decoration 6. Free coupons for next course 7. And so much more. Hurry up!!! Only for a limited time. Please email your details at udemy@kgptalkie.com for the FREE COUPONS of the next course.
@karanarora85284 жыл бұрын
amazing video brother , so can we summarize any video or article here ?
@KGPTalkie4 жыл бұрын
Thanks for watching. Yes we can summarize any document.
@teetanrobotics53634 жыл бұрын
Could you please create a GitHub repository for all codes ?
@KGPTalkie4 жыл бұрын
Thanks for watching. Git codes are given in video description of each video.