Coding Logistic Regression In Python | Machine Learning Tutorials Using Python In Hindi

Поділитися
Вставка
  • Опубліковано 16 вер 2024
  • ►Source Code: codewithharry.c...
    ►This video is a part of my Machine Learning Using Python Playlist- • Machine Learning Tutor...
    ►Click here to subscribe - / @codewithharry
    Best Hindi Videos For Learning Programming:
    ►Learn Python In One Video - • Python Tutorial In Hin...
    ►Python Complete Course In Hindi - • Python Tutorials For A...
    ►C Language Complete Course In Hindi -
    • C Language Tutorials I...
    ►JavaScript Complete Course In Hindi -
    • JavaScript Tutorials I...
    ►Learn JavaScript in One Video - • JavaScript Tutorial
    ►Learn PHP In One Video - • Learn Php In One Video...
    ►Django Complete Course In Hindi -
    • Python Django Tutorial...
    ►Machine Learning Using Python - • Machine Learning Tutor...
    ►Creating & Hosting A Website (Tech Blog) Using Python - • [Hindi] Web Developmen...
    ►Advanced Python Tutorials - • Intermediate/Advanced ...
    ►Object Oriented Programming In Python - • Object Oriented Progra...
    ►Python Data Science and Big Data Tutorials - • Python Data Science an...
    Follow Me On Social Media
    ►Website (created using Flask) - www.codewithhar...
    ►Facebook - / codewithharry
    ►Instagram - / codewithharry
    ►Personal Facebook A/c - / geekyharis
    Twitter - / haris_is_here

КОМЕНТАРІ • 219

  • @chetak-thegermanshepherdsm141
    @chetak-thegermanshepherdsm141 5 років тому +63

    Sir, Please cover Face recognition, Face unlock, chatbot, voice enabled chatbot creation in a step by step fashion. Humble request.

  • @avinashsingh7698
    @avinashsingh7698 5 років тому +29

    Thanks for listing our request.
    I am glad to see you with ML back, Your explanation is great.
    Every concept gets clear.
    Thank you very much.

  • @arpitagec9
    @arpitagec9 5 років тому +35

    Finally, you are back with ML :)
    Bro, one request pls pls cover the statistics part. It will help us understand better.

  • @thestranger9577
    @thestranger9577 5 років тому +9

    Bro sorry can't follow since so many days....but your are now back with machine learning....I'm so excited...going to revise all old videos of this series

  • @dr.samaleswariprasadnayak8664
    @dr.samaleswariprasadnayak8664 3 роки тому +4

    I have watched all your ML videos sequentially. Believe me I don't know anything about ML but now I can say atleast I know something about ML. Thank you for these videos. Specially your efforts to make the concept simple is commendable. Wish you a healthy life ahead.

  • @anirudhchakravarty6373
    @anirudhchakravarty6373 2 роки тому +10

    Can you cover any other topic if it has been left out? I love these series. Very short and sweet. 1 video covers like almost 10 videos of Andrew NG. I mean I love Andrew but man I totally love your videos as well. Can't wait for more. Also it would be great if you could cover deep learning or some more ml through projects if you want. But yes I'm up for anything at this moment.

  • @rihaanaggarwal1576
    @rihaanaggarwal1576 4 роки тому +8

    Have been following yours series and love this series. Thanks a lot for helping us with your knowledge

  • @abhisekupadhaya
    @abhisekupadhaya 5 років тому +3

    You are the best of the best UA-cam programmers.
    I am extremly thankful for your existance because you are innovating next generation like us.

  • @shivamdhamejani5944
    @shivamdhamejani5944 3 роки тому +5

    04:11 , i trained a ml model, and ur answer is absolutely correct, it also showed 53 , love u bro 💓💓💓

    • @Pgggg
      @Pgggg 3 роки тому +1

      Where did you learn ML from??

    • @Pgggg
      @Pgggg 3 роки тому +1

      I am a beginner in ML. So where do I learn ML from?

    • @shivamdhamejani5944
      @shivamdhamejani5944 3 роки тому

      @@Pgggg I learned ml from codeWithHarry only, you should also consider it, because i've seen many other videos but in many videos they don't teach you anything, and in other videos it's hardd to understand, so codeWithHarry is best option to learn ml

    • @Pgggg
      @Pgggg 3 роки тому

      @@shivamdhamejani5944 so his ML playlist is enough to understand python and ML as a beginner??

    • @shivamdhamejani5944
      @shivamdhamejani5944 3 роки тому

      @@Pgggg yeah it is, his playlist is very easy to understand even for beginners, and his playlist is enough for beginners to learn ml

  • @anujpoudel
    @anujpoudel 4 роки тому +4

    Linear Regression is used to predict value which we don't know and Logistic Regression Is used to predict the possibility of occurring or being something, for which we already know its all possibilities.

  • @abhinavmathur6072
    @abhinavmathur6072 5 років тому +6

    At last machine learning.... Deeply thanks bro

  • @siddheshbhosale5115
    @siddheshbhosale5115 2 роки тому

    Here people are having concerns about why predict_proba() returns two columns?
    Here is the simple explanation for the same. predict_proba() produces output of shape (n, k) where n is the number of data points and k is the number of classes you're trying to classify. Here we have two classes, first class is the probability that 'the flower not being Virginica', and the second one is 'the flower being Virginica' , and hence we have 2 columns. Say your labels(classes) are ["not being Verginica", "being Virginica"]. If a datapoint is predicted to have 80% chance of 'not being Verginica' and consequently 20% chance of 'being Verginica', then your output row for that point will be [0.8, 0.2] to reflect these probabilities. Hence if you don't slice the other column and consider both the columns for plotting , at certain instance of [0.5, 0.5] you could see the plots intersecting each other for the sigmoid function. Adding up the columns of any instance will return the answer to be 1 i.e. [0.8 +0.2 ]= 1 . Hope that helped ! Also, Thank you Harry for all your efforts in creating such a flawless series !

  • @CaptainPeep
    @CaptainPeep 5 років тому

    Bhaiya aap bohot achche se saari cheeze sikhate ho apke jaisa aur koi nahi hai youtube par.
    Mai abhi aapki pygame vali series dekh raha aur vo bhi bohot achchi.
    Thank You hum sabko itni saari achchi cheeze sikhane ke liye.

  • @joykoley7096
    @joykoley7096 Місяць тому

    Your videos help millions to learn coding easily ❤❤

  • @hunterroy8485
    @hunterroy8485 3 роки тому +2

    the .predict_proba() method returns an array of dim (n, 2). You have only plotted the second column, so I guess that is the actual useful probability. What is the significance of the first column?

  • @2mitable
    @2mitable 5 років тому +1

    dude you nailed it ........ loved it bro keep machine learning series update day by day

  • @gursimrankaur8655
    @gursimrankaur8655 3 роки тому +1

    Thank you so very much for this. I had been searching about it and this video was the most helpful. Cleared all my doubts!

  • @omkarsutar578
    @omkarsutar578 4 роки тому +1

    Harray sir, You are a grear teacher for me, your videos are very much understandable.
    Happy teachers day 🤝🏻

  • @Partial21
    @Partial21 5 років тому +1

    thankuuuuuuuuuuuuuhhhhhhhhhhhh sooooooooooooooo much ...................you came up again with this series ....prob. and stats (cover bhi krdo too jayda clear rahega) #different type of graph also

  • @sumsangs9plus302
    @sumsangs9plus302 5 років тому +1

    you are birliant teacher really 😮😮

  • @smithkumar9743
    @smithkumar9743 5 років тому +2

    Harry Bhai Please make a detailed video on feature engineering.Like Feature selection ,New Feature creation ,Normalization and Data cleansing

  • @purbamajumdar6853
    @purbamajumdar6853 5 років тому +1

    Thnx Harry vaai for restaring video upload of ML series.
    Is course k cmplt videos upload kijiyega plz, bahot achhe se sikhne ko milta h yaha..:-)

  • @dhananjaykansal8097
    @dhananjaykansal8097 5 років тому +2

    Lovely Harry ji. You’re awesome. Keep it up. Thanks a lot

  • @allaeibgaming2164
    @allaeibgaming2164 3 роки тому +1

    Please continue your machine learning course

  • @purvishathakkar916
    @purvishathakkar916 5 років тому

    sorry harry sir ham bahut late ye series ko dekh rhe he.
    but thank you thank you so much bcoz its really very very helpful for us to understand ML.
    thank you so much to give your precious time and also teaching a concepts very clearly.

  • @RPLUSRCreations
    @RPLUSRCreations 3 роки тому

    Awesome... thank you sir , I got a confidence that I can try new projects myself...

  • @rajshekharrakshit9058
    @rajshekharrakshit9058 5 років тому +2

    Your explanation is awesome but plz implement the code based on your explanation, that is by using only numpy library and not using Sklearn plzzzz. Its important for us

  • @RBTIT
    @RBTIT 3 роки тому

    harry bhai youn are legends role model for many like me.
    plz add more videos on machine learning and deep learning.
    love from heart.

  • @MuditJain-vy3uo
    @MuditJain-vy3uo 2 місяці тому

    New refreshed version of this course is needed in 2024 by CodeWithHarry

  • @call-me-potato.
    @call-me-potato. 2 місяці тому

    Many thanks dear teacher.

  • @hassanshahzad6216
    @hassanshahzad6216 5 років тому +1

    Your videos are very helpful

  • @mohsinmalik7240
    @mohsinmalik7240 5 років тому +1

    Please harry Bai complete ML series till end.you r best 💛

  • @prakharpuri164
    @prakharpuri164 4 роки тому +1

    i hv been following all the videos of your ml playlist and your explanation is awesome. i hv one doubt in this video that why does y_prob return 2 columns and why is the graph s-shaped?
    plz reply soon

  • @beingraja9586
    @beingraja9586 5 років тому +2

    PLEASE READ IT FULL
    ------------------------------------------------------
    Bhai mai tumhare data science tutorial aur python tutorial ko pura dekha aur sare video like kiya and then I came to machine learning but aap pura video upload nahi kiye the aur kafi kam tutorials the so I switched to other youtube playlists for ml tutorial they explain good and impressed me a lot I am not saying that your tutorial is bad it is one of the greatest ml tutorial but you left it behind so I am sorry now I can't switch from those other ml tutorial to you but I will take it as a help AND OBE AGAIN PLEASE DONT LEAVE ANY TUTORIAL BEHIND IF YOU ARE YPLADING THAT THEN MUST COMPLETE IT this I my humble requests for you
    WITH REGADS
    BEING RAJA
    And once again
    harry bhai tum to alag level ke teacher and dev ho
    THANKS FOR TEAHING ME MANY THINGS
    EK QUESTION BHI H
    KI AAP ML PE REGULR VIDEO BANAOHE KI NI

  • @shubhamaggarwal8957
    @shubhamaggarwal8957 5 років тому +1

    Can u make video by explaining only using numpy it will be more helpful

  • @subhampatwari3301
    @subhampatwari3301 3 роки тому

    harry bhai, in 45:56/49:35 , i think it would have been column. we need one column of probability.....??

  • @rahulgaikwad5058
    @rahulgaikwad5058 5 років тому

    Harry Bhai Awesome Machine learning Series please complete all Algorithms...

  • @ranjeetkumar2051
    @ranjeetkumar2051 2 роки тому

    thank you sir for making this video

  • @vishvaprakashmaddheshiya9770
    @vishvaprakashmaddheshiya9770 2 роки тому +1

    Please implement the logistic regression algorithm for email spam classification .

  • @codewithharryfanchannel559
    @codewithharryfanchannel559 5 років тому

    I have no words to appreciate your support you are superb

  • @rubikb3
    @rubikb3 5 років тому

    Hi Harry Bhai, I liked your Phython videos a lot and in hindi you explain the concepts very well. Could you please create a video on Implementing Logistc Regression with L2 regularization Using SGD: without using sklearn please.

  • @ankanmazumdar5000
    @ankanmazumdar5000 2 роки тому

    very nice explanation

  • @jayeshagrawal9145
    @jayeshagrawal9145 2 роки тому

    sir code me jp y_prob me probability ke 2 values kyo hai ..? and while we take the value of index 1 particularly..

  • @ratnakantahanse2661
    @ratnakantahanse2661 3 роки тому

    Thank you sir. . ❤️❤️❤️....

  • @parthmangalkar
    @parthmangalkar 2 роки тому

    Nice Explanation Harry Bhai!

  • @jayantpatel4305
    @jayantpatel4305 3 роки тому

    Eventually I got it here....tnks alot

  • @dhananjaykansal8097
    @dhananjaykansal8097 5 років тому +1

    Given the data dede muje theta. This was hilarious Harry ji

  • @victorb22622
    @victorb22622 5 місяців тому

    38:10 Harry ,the way you type the codes ,it's not possible to understand most of viewer who is really a beginner.

  • @salmaniproductions1104
    @salmaniproductions1104 10 місяців тому

    thank you so much harry bhai

  • @swaidaslam8266
    @swaidaslam8266 3 роки тому

    Thank You bro!

  • @Vaibhav20x09
    @Vaibhav20x09 3 роки тому

    Harry bhaia ! you are great.

  • @user-9bk
    @user-9bk Рік тому

    25.43 min :
    ans: d/dΘ j(Θ) = -1/m [ log(p) - log(1-p) ]
    is it correct ????

  • @sarthakjindal4003
    @sarthakjindal4003 2 роки тому

    ITS very helpful

  • @praveenverma1457
    @praveenverma1457 Рік тому

    Awesome 👍

  • @pkrockon200
    @pkrockon200 4 роки тому

    Simply ausam....Salute IITian...

  • @ankanmazumdar5000
    @ankanmazumdar5000 2 роки тому

    stochastic gradient descent pe bhi video banao pls

  • @surajrao4792
    @surajrao4792 3 роки тому

    thank you sir for this amazing playlist

  • @TECHINICALLAB
    @TECHINICALLAB 5 років тому

    I am learning python from your playlist thx for this but make videos about kivy for developing android app with python (kivy se hi Banta hai na )

  • @humanbeing9106
    @humanbeing9106 5 років тому

    aap sikha rahe ho awsome talliyaa but koi question agar aapse poochna ho toh hum sare viewwers kya kare

  • @RohanDasRD
    @RohanDasRD 5 років тому +3

    Finally ❤

  • @vihanplayz4322
    @vihanplayz4322 2 роки тому

    pls make video on another algorithms live svm , time series, recommender sys n deep learning also

  • @AnubhavMadhav
    @AnubhavMadhav 4 роки тому

    Kitne acche insaan ho yaar!!

  • @vishalbhardwaj5618
    @vishalbhardwaj5618 2 роки тому

    awesome video

  • @praveshkumar8939
    @praveshkumar8939 3 роки тому

    Very Good

  • @ayushawasthi3499
    @ayushawasthi3499 4 роки тому

    Sir plz post more vedeos on machine learning and plzz cover the topics like clustering

  • @ramtiwari4727
    @ramtiwari4727 4 роки тому

    we can convert true-false list to 0-1 list just by multiplying 1 to the former list.

  • @abdulwahabchudhary6269
    @abdulwahabchudhary6269 8 місяців тому

    harry bhai Deep learning pr be course banao

  • @usamaalicraft3646
    @usamaalicraft3646 3 роки тому

    Thank You Sir

  • @chetanmundhe8619
    @chetanmundhe8619 4 роки тому

    very good explaination harry

  • @satyajitachar4159
    @satyajitachar4159 5 років тому

    This is amazing brother
    I need it

  • @usamaalicraft3646
    @usamaalicraft3646 3 роки тому

    Thanks for making

  • @Yagnik_Jadav
    @Yagnik_Jadav 2 роки тому

    great....

  • @nirajsathe9220
    @nirajsathe9220 3 роки тому

    Bro taking all the columns as input feature then what parameter value needs to pass so that we can get output .....

  • @bapanmondal3502
    @bapanmondal3502 5 років тому

    Harry bhai apke video mare liya bohot
    helpful ha

    • @IND_development
      @IND_development Місяць тому

      Abhi kiya shuru hai bhai 4 saal baad 😊

  • @RAKESHTIWARI-zr1en
    @RAKESHTIWARI-zr1en 5 років тому

    hit harry i am a stock trader, i am finance background and learning python progr. for automation of setup kindly make video of automation or ml for stock trading. how can use ml in trading.

  • @krohit65
    @krohit65 2 роки тому

    vs code me .ipynb likhenge instead of .py to jupyter notebook wahi khul jayega

  • @KaranSingh-dt6be
    @KaranSingh-dt6be 2 роки тому

    harry sir, Is this playlist is complete?

  • @nomihaider96
    @nomihaider96 2 роки тому

    harry please make a new complete course of machine learning please

  • @mozammilkarim8636
    @mozammilkarim8636 4 роки тому

    thanks

  • @sayedshabeena5495
    @sayedshabeena5495 5 років тому

    sir plzzz make video on php stepwise like c language

  • @sunnynuri7191
    @sunnynuri7191 5 років тому

    The one the best harry paaji

  • @rahulchudasama9980
    @rahulchudasama9980 2 роки тому +1

    Hello Harry bhi ,
    I am unable use codes which you written in vs code ?
    Why this problem happens in my system ??
    Even I can't do on pycharm also
    But i can do all this programming on
    Jupyter notebook easily

  • @viral_video_ayana
    @viral_video_ayana 2 роки тому

    thankyou bhai

  • @ketankushwah4177
    @ketankushwah4177 4 роки тому

    isame apane last me y_prob bhi print karke dikhaya ta. so fir plot me jo slicing kiya tha to usame exactly konsi vo 1 raw select kihe. vo dout he kyu ki y_prob bhi print kiya lekin usame bahot sari raw he. or its ramdomly select?

  • @vishaltyagi7131
    @vishaltyagi7131 5 років тому

    You are best 👌

  • @thenewway416
    @thenewway416 5 років тому

    Harry bahi please I am requesting make one video on data Structure and algorithm plz

  • @muhdsaad107
    @muhdsaad107 3 роки тому

    Best series for ML ❤❤

  • @jk2346
    @jk2346 3 роки тому

    Plz make more videos of ml

  • @rajeshsahoo5551
    @rajeshsahoo5551 3 роки тому

    Bro upload computer vision in one video... Pls

  • @vishwajeetsinghkushwah3038
    @vishwajeetsinghkushwah3038 4 роки тому

    bhai, please upload more videos on machine learning.

  • @Praveenkumar-wv8qy
    @Praveenkumar-wv8qy 5 років тому

    Thank bhai i am so happy😄😃

  • @rabindrabehera5623
    @rabindrabehera5623 5 років тому

    Bhai shell scripting lecture ki video add karoge.. It will help me alot

  • @akarshpaliwal4182
    @akarshpaliwal4182 5 років тому

    Keep upload videos on ml👍👍👍

  • @debanjandas6193
    @debanjandas6193 2 роки тому

    How to break Randomsearchcv with certain conditions.. Kindly guide me with code

  • @androidgamez3639
    @androidgamez3639 3 роки тому

    Bro cost function ke part ko aur Thora explain karoge?

  • @jenil16
    @jenil16 Рік тому +1

    harry bhai......I got it that from which book u are explaining us.... short form of the book name is HoMLwSKT .... Can anyone GUESS it?

    • @jenil16
      @jenil16 Рік тому

      @mr.thermistr9903 YES....hands on ML with sklearn and tensorflow

  • @tudos9209
    @tudos9209 3 роки тому

    bhot hard hai harry bhai!!

  • @amartyanayak7533
    @amartyanayak7533 6 місяців тому +1

    38:27

  • @humanbeing9106
    @humanbeing9106 5 років тому +2

    harry bhiya plss aap se request hai hame aapse question poochne ho toh uska koi solution nikalo bhiya

  • @MeetThoriya-y9r
    @MeetThoriya-y9r 11 місяців тому

    Harry bhai , OUTPUT OF PROBA ko slicing kyu kiya ?