Check out our premium machine learning course with 2 Industry projects: codebasics.io/courses/machine-learning-for-data-science-beginners-to-advanced
@Вавилон-й5у2 жыл бұрын
Your videos are really such great source of knowledge, especially for me as a beginner. I'm trying to find the roadmap to become an NLP engineer, pls don't stop making videos.
@Tiffypox24 күн бұрын
Thank you so much for this in-depth explanation!
@shaileshmahto7690 Жыл бұрын
According to the explanation at 10:15 , log is used in IDF formula to dampen the effect of term occurring too often. But isn't the effect of frequency of term captured in the TF(Term Frequency) part of the formula(& not the IDF part). IDF, instead captures the value of each term based on WHETHER it occurs in most documents or not. So even if the term occurs 1 million times in one document and never in other documents, its IDF value would be same as if the term occurs only 1 time in one document and never in other documents - since we are checking for number of docs that have term present & not how many times the term occurs. Hence, for my example, both the scenarios will assign the same high IDF value to the term. Hence, I dont see the dampening of the importance of the term that has very high frequency caused due to higher term frequency. Please clarify. Thank you for the practical lessons that are free and easy to understand.
@robertkumar7768 Жыл бұрын
A big thank you sir for explaining the concepts in simple ways.
@minakshisontake3585 Жыл бұрын
such a great explanation . thank you Dhaval sir.
@mujtabasultani57122 жыл бұрын
thannnnnnnnnnnnk you very much dear Dhaval, the way you're teaching is amazing..., really beneficial for us, hope you continue the series till end.
@clairlee-b5s11 ай бұрын
Thank you so much for such a clear explanation.
@pouriaforouzesh5349 Жыл бұрын
It could not better than this 🙏
@aradhyadhruv9084 Жыл бұрын
Thanks a lot sir and please keep making more videos!!
@yossnour4 ай бұрын
Thank you very much. Great explanation!
@chimadivine7715Ай бұрын
Mehn! You just take things in a gradual and relaxed manner. No rush. Thank you so much. I feel and know that I'm learning a lot here. By the way, I love your most powerful weapon. Lol.
@Raaj_ML8 ай бұрын
Great tutorial. But the explanation for using log in IDF gives a wrong reason..please check..
@PriyankaDarshanamАй бұрын
Ecommerce and emotions(exercise) datasets are so different from what I see in git hub. pls help
@harsh2014 Жыл бұрын
Thanks for your great effort !
@B515R4 ай бұрын
AMAZING !! 😍😍
@Lava_Kumar8 ай бұрын
We have to convert it into lowercase also in pre processing
@nriezedichisom16768 ай бұрын
Thank you. You are the best
@n3cr0manz3r62 жыл бұрын
Hi Dhaval, it would be of great, if you explain how to deploy this model in your upcoming videos.
@codebasics2 жыл бұрын
ok, actually I have made model deployment videos before in my data science projects. Search "codebasics data science projects" and in those project series you will find deployment videos. I will add separate videos for deployment in this series too when I post videos on end to end NLP projects.
@marcellodichiera2 жыл бұрын
@@codebasics hope you ll use Streamlit for deployment :) .. always thanks for your precious tutorials ..🙏🙏
@souravbarua3991 Жыл бұрын
Nice and simple explanation. Pls perform checking the model with new text data in the tutorial. Because I tried to check the model with new text data while practicing, it shows an error.
@vivekchouhan-v4g Жыл бұрын
which error had occurred? if u can give the description of the error will try to figure out
@semrana19864 ай бұрын
nice work, where is the TF score computed?
@amolkaushal2243 ай бұрын
I am facing a issue . I had a dataset which had 60398 test description rows and i cleaned the text did lamitization and stemming . After that i used TFID vectorization to convert text into matrix form.and the matrix shape it is showing (60398x104757). It is getting trained well using SVC . But when i am creating a predictive system and trying to predict same label column for a new data which has less number of rows (10000) after cleaning the new data and transforming into matrix form using TFID. When i am trying to predictict using. Model. Predict(X) i am facing a error " X has 10525 features, but SVC is expecting 104757 features as input". How to correct this error.
@sanketadamapure8024 ай бұрын
22:33 It's False. machine learning models are versatile tools that can process and learn from various data formats.
@svensalvatore87029 ай бұрын
Sir big fan!
@jasonpot56699 ай бұрын
how can i apply tfidf to only one colum means in your dataset, to df['text']?
@vishnuj7470 Жыл бұрын
Here why are we not using one hot encoding instead of labeling?It could be much better right
@anirbanc88 Жыл бұрын
15:14 why "already" has 0, if its non existent in the corpus, how is it being added to the vocabulary?