Complete NLP Machine Learning In One Shot

Поделиться
HTML-код
  • Опубликовано: 6 июл 2024
  • Start Contributing in Open Source Projects
    The-Grand-Complete-Data-Science-Materials
    github.com/krishnaik06/The-Gr...
    Timestamp
    00:00:00 Roadmap To Learn NLP
    00:16:00 Practical Usecases Of NLP
    00:21:23 Tokenization And Basic Terminologies
    00:31:31 Tokenization Practicals
    00:45:11 Text Preprocessing Stemming Uing NLTK
    01:02:02 Text Preprocessing Lemmatization USing NLTK
    01:14:40 Stopwords, Parts Of Speech, NAmed Entity Recognition
    01:50:50 Different types Of Encoding
    02:45:18 Word Embedding, Word2vec
    03:29:37 Skipgram Indepth Intuition
    03:39:06 Average Word2vec With Implementation
    ------------------------------------------------------------------------------------------------------
    Complete Langchain Playlist:
    • Amazing Langchain Seri...
    --------------------------------------------------------------------------------------------------------
    Support me by joining membership so that I can upload these kind of videos
    / @krishnaik06
    ------------------------------------------------------------------------------------------------------------------------------
    ►Data Science Projects:
    • Now you Can Crack Any ...
    ►Learn In One Tutorials
    Statistics in 6 hours: • Complete Statistics Fo...
    Machine Learning In 6 Hours: • Complete Machine Learn...
    Deep Learning 5 hours : • Deep Learning Indepth ...
    ►Learn In a Week Playlist
    Statistics: • Live Day 1- Introducti...
    Machine Learning : • Announcing 7 Days Live...
    Deep Learning: • 5 Days Live Deep Learn...
    NLP : • Announcing NLP Live co...
    ►Detailed Playlist:
    Python Detailed Playlist: • Complete Road Map To B...
    Python playlit in Hindi: • Tutorial 1- Python Ove...
    Stats For Data Science In Hindi : • Starter Roadmap For Le...
    Machine Learning In English : • Complete Road Map To B...
    Machine Learning In Hindi : • Introduction To Machin...
    Complete Deep Learning: • Why Deep Learning Is B...

Комментарии • 100

  • @huepalette-eye
    @huepalette-eye 3 месяца назад +29

    I watched this video entirely , its very useful for me. I paid 55K for a data science and I am learning from here you are much better than any one there .
    Thank you Krish 😍

  • @ushabathula
    @ushabathula 7 месяцев назад +4

    Thank you for being a guiding light in the vast sea of information, providing clarity and understanding to those who seek knowledge. Your commitment to the betterment of individuals and society as a whole is truly uplifting.

  • @user-jx2en8mo2b
    @user-jx2en8mo2b 7 месяцев назад +6

    Thank you for uploading such nice and comprehensive lectures (not videos) and explaining it so nicely. Your commitment is quite commendable. Please make such one shot videos in the future too.

  • @Mani_Ratnam
    @Mani_Ratnam 7 месяцев назад +15

    Who needs institutes when krish sir is ready to give everyone this much free resources.

  • @abdallahelra3y118
    @abdallahelra3y118 2 месяца назад +3

    Aww, you did an incredible job, Krish! I was fully engaged for the entire 4 hours and didn't get bored once.

  • @kmrjt1
    @kmrjt1 7 месяцев назад +18

    Thanks for all the amazing information you keep sharing over youtube. Please keep up the excellent work, your data science knowledge is of great help to the community of aspiring data scientists.

  • @indukashyap1175
    @indukashyap1175 7 месяцев назад +4

    Excellent Video, Just started with it, got clear about basics of NLP

  • @user-ec9he3nz7f
    @user-ec9he3nz7f Месяц назад +2

    Great video Krish much needed
    Thank you so much, You are Awesome!!!!

  • @gymdirections8372
    @gymdirections8372 7 месяцев назад +3

    Helped to revise the concepts. Thank you Krish sir

  • @padam_discussion
    @padam_discussion 13 часов назад

    Looks great video, I'm halfway right now.

  • @schan263
    @schan263 Месяц назад +1

    I am both happy and sad. Happy that I discovered the channel today. Sad that I discovered this channel only today. I wish I discovered this channel 4 years ago. So the overall sentiment of my post is positive :)

  • @SaahilPriyaPrasannajeet
    @SaahilPriyaPrasannajeet 3 месяца назад +1

    Thanks for sharing and educating us. Keep it up.

  • @fansclub7758
    @fansclub7758 4 месяца назад +1

    Thankyou so much Krish Sir for this amazing video.

  • @aghazohaib4753
    @aghazohaib4753 6 месяцев назад +7

    NLTK is a comprehensive and educational toolkit suitable for a wide range of NLP tasks, while SpaCy is a focused and efficient library designed for production use, particularly for tasks like entity recognition and part-of-speech tagging.

  • @NoDoglapan
    @NoDoglapan 6 месяцев назад +22

    at 2:30:20 you finish BOW video and transition into TF-IDF video and say that in previous video you have mentioned about N-grams. I didnt find the N-grams video. Am I missing something?

  • @ujjawalagrawal
    @ujjawalagrawal 6 месяцев назад +2

    Thankyou sir.. It was very useful to have it in single video.. All concepts were very clearly explained. God bless you sir.. I am 45 and trying to learn AI Ml😊

  • @vishnuteja2093
    @vishnuteja2093 7 месяцев назад +1

    Excellent roadmap. Really looking ahead.

  • @vaishh1765
    @vaishh1765 6 месяцев назад

    Thank you so much for this tutorial.

  • @lucaslorensi2937
    @lucaslorensi2937 Месяц назад

    Such a great leason. Thanks man!

  • @majydenam9423
    @majydenam9423 2 месяца назад

    Thank you Krish a friend introduce me to your videos. very wonderful and educative.
    Akpe na wo Mawu ne yrawo 💯

  • @harshmodi7627
    @harshmodi7627 5 месяцев назад +4

    Upon reading the documentation and paper on CBOW, I have two questions -
    1. You explained that when we chose a window size, for example 3, we take 3 consecutive words from the corpus and take the middle word as target word and words before and after (1 each in this case) to provide context for the target word. However the documentation says that the number of words we take as window size determines the number of words taken before and after the target word. So for example if we take window_size = 3, we take 3 words before and 3 words after the target word to provide context.
    2. We can chose the hidden layer to be any size. It is not important that it matches the window size, since the input layer does average or sum of the input vector and hence it's size is always [1 x V] where V is the vocabulary size. The input-hidden layer matrix is on size [V x N] where N is the hidden layer size, and then the hidden-output layer matrix is of [N x V] and finally the output layer if [V x 1]
    Can you please clarify my doubts here

    • @anirbantarafdar28
      @anirbantarafdar28 2 месяца назад

      I also have confusion in this step. i cant figure out the output dimension

  • @soumeshnayak4546
    @soumeshnayak4546 6 месяцев назад

    Thank you for this oneshort awesome video in NLP

  • @user-ou7dq1bu9v
    @user-ou7dq1bu9v 4 месяца назад

    Thanks for all you do Krish 🙏

  • @Vivek2495646
    @Vivek2495646 4 месяца назад +1

    Thank you for this amazing content

  • @PalakGarg-cg1xm
    @PalakGarg-cg1xm 2 месяца назад

    best course, it really helped me!

  • @rakesh8048
    @rakesh8048 11 часов назад

    I bought FSDS course from ineuron cos of your name but learning from here.

  • @shreyanssoni9594
    @shreyanssoni9594 Месяц назад

    NLTK is a string processing library. It takes strings as input and returns strings or lists of strings as output. Whereas, spaCy uses object-oriented approach. When we parse a text, spaCy returns document object whose words and sentences are objects themselves.

  • @pavanm361
    @pavanm361 20 дней назад

    Thank you so much for showing path to our life krish…

  • @MrAmarSindol
    @MrAmarSindol 7 месяцев назад

    i enjoyed this video, thanks Krish

  • @RaviSingh-bl6ls
    @RaviSingh-bl6ls 7 месяцев назад +1

    hello krish ,
    how to handle curse dimensionality in huge corpus?

  • @gichurumuthomi8578
    @gichurumuthomi8578 7 месяцев назад +41

    Can you please create end to end project with real time data, ie using Kafka for streaming, Django for the backend and atleast use kubeflow for tracking 😊,,I'll appreciate

    • @sapnilpatel1645
      @sapnilpatel1645 7 месяцев назад

      We really want this kind of project.

    • @soumyah488
      @soumyah488 6 месяцев назад

      in ineuron there is a course for end-to-end data science projects. You can check it out

  • @gauravkumarsingh7896
    @gauravkumarsingh7896 7 месяцев назад

    This video was really needed

  • @balaji3229
    @balaji3229 7 месяцев назад

    What is the sw tool and gadgets that you use to present it , writing in a pen ?

  • @careerglitch
    @careerglitch Месяц назад +1

    Great insight, what is the name of that digital board that you're using to capture your illustrated drawings?

  • @alamgirqazi1
    @alamgirqazi1 2 месяца назад

    Outstanding series

  • @srimanduraiswamy3242
    @srimanduraiswamy3242 7 месяцев назад +1

    NLTK is widely used in research, Spacy is focuses on production usage.

  • @mssathvick007
    @mssathvick007 7 месяцев назад

    Great video Krish ❤ much needed

  • @kiranbhat8729
    @kiranbhat8729 4 месяца назад

    Amazing videos. Curious to know which app/tool you use for creating notes

  • @eric-theodore-cartman6151
    @eric-theodore-cartman6151 7 месяцев назад

    Awesome! Thanks Krish sir!

  • @terrykeiran4582
    @terrykeiran4582 6 месяцев назад

    in NLP do we use standardization or normalization for text data ?

  • @rithikreddy1262
    @rithikreddy1262 4 месяца назад +2

    Hello Krish, A small problem at time 2:30:21 the n-gram explanation video is skipped. Please add the video corresponding to N-gram. Thank you.

  • @aryangupta9366
    @aryangupta9366 4 месяца назад

    okay for lemmetization how would we find the pos is noun, verb, adjective or anything else like for a big corpus?? because we cant explicitly check for all the types right?

  • @lathachelluri5129
    @lathachelluri5129 7 месяцев назад +1

    Hello krish
    Are you starting any new batch for data science?? plz let me know
    If possible plz shre any link regarding that!!
    Thank you

  • @Danny_DB-xi5lo
    @Danny_DB-xi5lo 7 месяцев назад

    Where can I find the next part..? Like practical implementation of word2vec with model training from scratch using gensim or Glove... Also practical implementation of tf-idf, bow... Pls share those videos as well

  • @swatisharma7822
    @swatisharma7822 5 месяцев назад

    Thanks for this video. N-grams is missing from this video. Could you please upload that separately annd share the link?

  • @veenajain
    @veenajain 6 месяцев назад

    Awesome session

  • @aryangupta9366
    @aryangupta9366 4 месяца назад

    how is parts of speech going to work for ungrammatical sentences like some word's part of speech may depend on context and semantic in sentence as well right?

  • @anirudhrvs4849
    @anirudhrvs4849 7 месяцев назад +2

    N grams topic is missing. Could you kindly check the video again ?

  • @avisii8928
    @avisii8928 7 месяцев назад

    Hello sir, can you help me with my final year project, i'm trying to build a website where users uploads resumes in pdf format and admin classifies all resumes into predefined categories and ranks them based on job descriptions using cosine similarity and they said we cant use external libraries. can you help me out?

  • @DineshKumar-tn4lo
    @DineshKumar-tn4lo 7 месяцев назад

    Sir can you tell how can I use azure openai api for llm in python

  • @Pancake-lj6wm
    @Pancake-lj6wm 2 месяца назад

    Godamn that is an incredible speech

  • @cec408_adityachoudhari5
    @cec408_adityachoudhari5 7 месяцев назад +1

    Sir will you also cover deep learning models in nlp?

  • @avinashab4038
    @avinashab4038 7 месяцев назад +2

    Can you please provide notes for this video

  • @user-li2ox6rv2k
    @user-li2ox6rv2k 6 месяцев назад

    what are tools used in preparing the video?

  • @msmg11
    @msmg11 6 месяцев назад +2

    n-grams tutorial video is missing

  • @lastblackbear8305
    @lastblackbear8305 3 месяца назад

    However, the process of tokenization usually goes from a larger unit to a smaller one, not the other way around. So, it’s more common to tokenize a paragraph into sentences or a sentence into words, rather than tokenizing sentences into a paragraph.
    @37:21 your comment says ##sentence to paragraph tokenization however you ended up using sent_tokenization() which accepts a paragraph and breaks it down into smaller sentence

  • @dheerajsharma1787
    @dheerajsharma1787 4 месяца назад

    Can anybody please tell me how can I enable extension support like code completion in jupyter lab. I have searched stackoverflow but all effort had been in vain.

  • @user-ul2mw6fu2e
    @user-ul2mw6fu2e 7 месяцев назад +3

    Hey Krish. İ think you can read my mind😅. Thank you for video

  • @sathish1078
    @sathish1078 6 месяцев назад

    Great Video Krish, Some how Ngrams is skipped, Can you please add it

  • @TargetMpset
    @TargetMpset 6 месяцев назад

    Thankuuu sir❤

  • @n.aniruddhan4464
    @n.aniruddhan4464 6 месяцев назад

    petition to upload the deep learning part of NLP ASAP, i have college exam next month

  • @ninjadev4676
    @ninjadev4676 Месяц назад

    really nice explanation brother, please, can you share your notes?

  • @talhajobayer8666
    @talhajobayer8666 Месяц назад

    can i do this without doing ML/AI basic concepts?

  • @jillanisofttech2977
    @jillanisofttech2977 7 месяцев назад +1

    Hey nice but this is old vedio sir i am one of your very old subcriber so i remember last year you upload this vedio. And at 16.26 vedio time frame please check your time too at the right bottom of your vedio when you open gmail. 17/10/2022 So please Sir Krish Naik I really respcct to you becuase i very learn from your side you are one of my best Online Professior. SO please don't mind for my commend. If you mind then i sorry you and please accept my applogies too. My Main request is this if you upload new vedio on NLP then its very helpfull for us.

  • @PankajKumar-mr6sj
    @PankajKumar-mr6sj 7 месяцев назад

    pls share link to this notebook

  • @commoncats5437
    @commoncats5437 7 месяцев назад

    most waited...♥

  • @spotnuru83
    @spotnuru83 Месяц назад

    Completed this course end to end and it is super amazing to be frank, i wasted a lot of money going for trainings. only request is could not find things like how to train a model to recognize our own named entities and how we can use nlp to take in un structured data to structured data , how to create a model from scratch to build something similar to word 2 vec with our own corpus kind , also some real time examples would be of great help.
    I know you are already doing a lot for free, but if you can help in the above requests it would be of great help.. please see if you can do this and I appreciate a looooot for what you are already doing for free. not seen anyone explaining in this detail and simple ways...

  • @PankajKumar-mr6sj
    @PankajKumar-mr6sj 7 месяцев назад

    needed one on GenAI

  • @KumR
    @KumR 6 месяцев назад

    Nice

  • @gichurumuthomi8578
    @gichurumuthomi8578 7 месяцев назад +2

    First to comment,, The best Data Science,Al, Machine Learning teacher of all time,, Straight outta Kenya❤

  • @jainam842
    @jainam842 7 месяцев назад

    please do include transformers and bert related part too

  • @SK_BA
    @SK_BA 7 месяцев назад +1

    Where is Transformers and BERT?

  • @aryangupta9366
    @aryangupta9366 4 месяца назад

    Where are the missing parts for this?

  • @Anuragbharti-jj5lf
    @Anuragbharti-jj5lf 2 месяца назад

    Sir, There is N-grams topic is skipped automatically .so, please discuss it again or fixed this video

  • @AbdullahiAhmad-po7qx
    @AbdullahiAhmad-po7qx 7 месяцев назад

    you are the best

  • @t-anime517
    @t-anime517 Месяц назад

    💯💯

  • @mohammedzaidkhan5687
    @mohammedzaidkhan5687 2 месяца назад

    that arabic was - Kayfa Haalak
    in case someone was interested in pronunciation

  • @ndroidLover
    @ndroidLover 7 месяцев назад

    Please make same one shot video on Deep Learning ❤

  • @guruprasadkulkarni635
    @guruprasadkulkarni635 7 месяцев назад +1

    so this is combination of your old videos right?

    • @krishnaik06
      @krishnaik06  7 месяцев назад +4

      No these are new recorded videos

    • @guruprasadkulkarni635
      @guruprasadkulkarni635 7 месяцев назад

      @@krishnaik06Dhanyawad, pichle videos samazhke skip karne wala tha

  • @aravindraamasamy9453
    @aravindraamasamy9453 7 месяцев назад

    Hi Krish , Can you please continue the LLM playlist

  • @islamiczone7731
    @islamiczone7731 2 месяца назад

    N grams is skipped! 😢

  • @rishiraj2548
    @rishiraj2548 7 месяцев назад

    🙏👍

  • @shivambhardwaj6809
    @shivambhardwaj6809 7 месяцев назад

    i too got here one of the first

  • @akshataniket2483
    @akshataniket2483 5 месяцев назад

    Watched video

  • @gauravdesai8863
    @gauravdesai8863 11 часов назад

    Can anyone comment on this ??? Will I be able to crack an interview on NLP after watching this vdo ?? Plz comment if u have watched this till the end

  • @RR-ic8ui
    @RR-ic8ui 3 месяца назад

    Awesome

  • @user-hz7hc4uj8n
    @user-hz7hc4uj8n 5 месяцев назад

    Can you help..
    I am getting error while installing gensim package
    Building wheel for gensim (pyproject.toml): started
    Building wheel for gensim (pyproject.toml): finished with status 'error'