Handwritten Digit Recognition on MNIST dataset | Machine Learning Tutorials Using Python In Hindi

Поділитися
Вставка
  • Опубліковано 27 сер 2024
  • ►Source Code, Data & Jupyter Notebook: 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

КОМЕНТАРІ • 283

  • @CodeWithHarry
    @CodeWithHarry  5 років тому +26

    I have recently started a new Python course on my English channel ProgrammingWithHarry:
    ua-cam.com/channels/7btqG2Ww0_2LwuQxpvo2HQ.html
    where I will be analyzing each and every submitted exercise solution in depth. So make sure to solve the exercise there if you want me to analyze your solution and want me to give some suggestions to you regarding your solution.

    • @CodeWithHarry
      @CodeWithHarry  5 років тому +12

      I will make naive bayes video very very soon!
      Make sure to access the ML playlist and stay tuned :)

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

      Thanks again

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

      I have been trying to Crack machine learning interviews.
      Please create video capture, face detection, face unlock video.
      Making Chatbot, NLP, NLTK, sentiment/text analysis, face detection, are needed to Crack interviews.

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

      Can u suggest me some machine learning book?.I'm a beginner.

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

      Sir please can u upload a video on installing keras and tensorflow both on Spyder

  • @surjithsundaresan9175
    @surjithsundaresan9175 4 роки тому +32

    its your greatness that when u got wrong you showed us also to solve it using other websites like stackoverflow. keep it up mann

  • @ManishKumar-fk9tw
    @ManishKumar-fk9tw 5 років тому +5

    My name is Manish Kumar
    Thank you so much sir Mai aap ka c programming ka video dekha aur mujhe itna achha laga ki Mai aapka Sara video dekhana chhahta hu
    Mai jab bhi search karta hu to Sabse pahle aaphi ka video search karta hu
    Thank you so much sir mai aapka jitna tarif karu kam hai. Kyo ki mujhe aapka samjhane ka concept bahot power full laga

  • @whatashowoff2754
    @whatashowoff2754 3 роки тому +43

    Import numpy as np
    x=[36000] change to np.array(x.iloc[36000])

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

      thank you vai,apna hamara bohat upakar kia..

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

      Thanks dude, this really helped

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

      Thank you man.. I was stuck at this point from 2 days and you got answer which I required...

    • @abhinavgarg5611
      @abhinavgarg5611 3 роки тому +3

      bahut bahut thanx vai
      i was really very frustrated due to this error
      you saved my life

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

      Thanks god

  • @AbhishekKumar-im2xd
    @AbhishekKumar-im2xd 2 роки тому +13

    First check ::
    print(type(x)) -> Its is a Data Frame not a numpy array , we should first convert x to numpy array before performing any operation
    Do ::
    x = np.array(x)
    now we can evaluate it like ::
    x[0],
    x[36000],
    x[65487]
    It's better than writing np.array(x.iloc[36000])
    hope, that it helps !!!

    • @nafisatasneem6198
      @nafisatasneem6198 2 роки тому +2

      Thank you so much for adding this comment. I was struggling while trying to plot the data in x. Your explanation helped me to visualize this!

    • @sachinraj5311
      @sachinraj5311 2 роки тому +4

      we can also do x=x.to_numpy()

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

      Thank you brother

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

      You made my day.

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

      Bro if Only I had an Award I would give it to you...Btw Thanks bro

  • @TheFahad318
    @TheFahad318 2 роки тому +21

    fetch_openml has made changes to its API so if you are accessing the dataset as a pandas Dataframe you can use [mnist = fetch_openml('mnist_784' , as_frame=False)] to load it as a NumPy array.

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

    please change:
    x_train[shuffle_index], y_train[shuffle_index] = x_train.iloc[shuffle_index], y_train.iloc[shuffle_index]

    • @proplayer-ij6xr
      @proplayer-ij6xr 2 роки тому

      And i have one more doubt, why he shuffled training data, we need to shuffle entire data i.e. 70000 not 60000.
      Pls reply 🥺

  • @mandarmore.9635
    @mandarmore.9635 Рік тому +5

    //this format is correct harry bhai x_train, y_train= x_train.iloc[shuffle_index], y_train.iloc[shuffle_index]
    not this x_train, y_train = x_train.[shuffle_index], y_train.[shuffle_index] please check your source code and if we are converting y_train and y_test to int and if we compare with string in y_train_2 it will give error beacuse we have converted it in int so we don't need string to compare in y_train_2 we need an int so we remove double quote i have tried it that's why i am saying this and thank you harry bhai you are an inspiration for me

  • @madhukark8847
    @madhukark8847 4 роки тому +2

    Sir,The way of your teaching is far better than our lecturers.We learned everything from sratch without getting bored.Interesting Tutorials.

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

    Although you are teaching word by word from oreilly book but still i appreciate because i dont have time to read that book and you are covering nearly a whole chapter.

    • @kidd0321
      @kidd0321 25 днів тому

      Is it? Where can i find the book? , can you specify the name of the book?

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

    Wow Harry jus loved it...enjoyed coding wit UA channel... Grt job🔥

    • @AshutoshKumar-cj1vj
      @AshutoshKumar-cj1vj 5 років тому

      you can also learn fashion mnist datasets from codingcampus.xyz

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

    Bhai aap se bdiya aaj Tak kisi ne nahi padaya specially in ML. Bahut bdiya tarike se samjhaya aapne. Keep teaching..

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

    Finally got it!!! Also read my comments in other video please!!!

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

    Harry Bhai,
    You are such an amazing person. Your determination and decdication is really appreciable.
    Providing these vedios , in such a understandable way makes become smart boy of my class.
    Beginners course for python, ML stuffs , and now JavaScript vedios are really very helpfull me and fellows like me.
    Thanking you up for bringing this vedio also.On text recognition.
    ♥️

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

    great work sir!!! ....BIG FAN!!!!!!!!!!!!!!!!!!
    #Can you please add more content on the topic like face detection project through (openCV)
    #I just want to learn each and every concept from you.
    Best teacher for machine learning till date!!!!!!!!!!!!!!!!!!!!!!!!!.

  • @aboutbusiness.
    @aboutbusiness. 9 місяців тому +1

    When he say "Agr ap ya video dakhty ho 5,6 sall bad" i looked at date of upload and it's been 4 years Now❤❤

  • @gaurav7132
    @gaurav7132 2 роки тому +4

    Key Error: in [x_train, y_train = x_train[shuffle_index], y_train[shuffle_index]]

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

      Also getting the same error if u could resolve it just tell it

    • @209_lovely3
      @209_lovely3 2 роки тому

      did you got the solution ???

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

      @@hitanshishah I am getting error in some_digit = x[36000] keyerror
      Plz tell how you solved it

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

    learning from you in quarantine thanks i was doing from book and not able to understand .you made it easy

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

    Great👍! Pls cover statistics part so as to make ML concepts very clear. ☺️

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

    Thanks to make such an informative vedio...I watched so many vedios regarding it but it is brilliant....!!!!

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

    Bravo man...thanks alot for your lectures.

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

    I have been trying to Crack machine learning interviews.
    Please create video capture, face detection, face unlock video.
    NLP, sentiment analysis are needed to Crack interviews.

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

      Yess, I want the same stuffs

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

      yes same here

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

      Use tensorflow and opencv for it. First use a harrcascade to detect the face then find a face detection dataset then just put mode.predict over there.

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

      Yes same here bro

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

      Can we make whatsapp group

  • @SaqibAli-do7yg
    @SaqibAli-do7yg 5 років тому +1

    Your videos always and usually informative and good.

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

    Dill hit Liya bhai🤩

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

    Sir,
    NLP, NLTK, Sentiment analysis, text mining, open cv, face unlock are the topics on which interview questions are based. Can you please cover these topics?

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

    Please continue your machine learning course

  • @user-zk6ws8re4p
    @user-zk6ws8re4p 3 роки тому

    Thank you sir... Aswm teaching... Understand properly

  • @swapnilparitosh6058
    @swapnilparitosh6058 6 місяців тому

    ValueError Traceback (most recent call last)
    Input In [147], in ()
    1 # Train a logistic regression classifier
    ----> 2 clf = LogisticRegression(random_state=0).fit(x_train , y_train_2)
    File ~\anaconda3\lib\site-packages\sklearn\linear_model\_logistic.py:1554, in LogisticRegression.fit(self, X, y, sample_weight)
    1552 classes_ = self.classes_
    1553 if n_classes < 2:
    -> 1554 raise ValueError(
    1555 "This solver needs samples of at least 2 classes"
    1556 " in the data, but the data contains only one"
    1557 " class: %r"
    1558 % classes_[0]
    1559 )
    1561 if len(self.classes_) == 2:
    1562 n_classes = 1
    ValueError: This solver needs samples of at least 2 classes in the data, but the data contains only one class: False

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

    Love you Harry Bhai !!!!!!!!
    Thanks for everything

  • @KhanKhan-xo9tb
    @KhanKhan-xo9tb 2 роки тому

    great sir. good information about MINST .thanks sir🥰🥰🥰😍😘

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

    Expected 2D array, got 1D array instead:
    array=[9 7 4 ... 1 7 2].
    Reshape your data either using array.reshape(-1, 1) if your data has a single feature or array.reshape(1, -1) if it contains a single sample.
    isa error yaye to ye karo
    model.fit(y_train.reshape(-1, 1), y_train_2)

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

    I don't understand why accuracy is checked for training data and not test data..somebody please help

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

    Bhaiya I appreciate ur work...thank u again..keep making stuff like this...
    2ndly it's my request if u a make video series on FLUTTER too if u get time, u explain hard things in easy way...
    Thank u again 😘

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

      refer to netninja, he has amazing flutter+firebase tutorials

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

    Any suggestion please ?
    How to Create a classifier which will classify a digit always as 'not 2' ?

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

      He is simply asking us to create a dumb classifier where all the values of y_train_2 and y_test_2 will return False . But that is not permissible while using 'clf.fit(x_train , y_train_2)'. Using it, will throw this error : ValueError: This solver needs samples of at least 2 classes in the data, but the data contains only one class: False
      What we are trying to do here is trying to create a 'digit 2 classifier'. So one thing we can do is make all values of y_train_2 and y_test_2 as 'False', for the numbers 0 to 9, excluding 6 (any number), by using the below codes (This way we can avoid the Value Error by creating two classes(True/False):
      y_train_2 = (y_train == 6)
      y_test_2 = (y_test == 6)
      So now y_train_2 and y_test_2 will return 'True' only where '6' is present and 'False' for any other number. some_digit= x[36001] contains the label as 2 at y[36001]. clf.predict(x[36001]) will return False which is correct to the extent of the code we wrote above. Notice that after cross validating you will still get the accuracy of 98 percent(subject to how the arrays were distributed inside cross validation) for all the values of False correctly predicted.

  • @Anjali-wr2eu
    @Anjali-wr2eu 3 роки тому

    Thankyou so much for this video. It helped a lot.

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

    Thankyou so much Harry Bhai!!!

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

    Please make video on face reconisation on tensor flow

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

    Such a wonderful video Harry bhaii... love this tutorial bro....

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

    i am facing key error on this line x_train, y_train= x_train[shuffle_index], y_train[shuffle_index] how i can resolve this?

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

      same problem with me, please let me know if you are able to solve the problem

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

    Harry bhai es playlist me kuchh video aur add kr do plz jisse hme ml project me koi problem n ho, aapko pta hoga aapne kya miss kiya, hm to abhi begginer h. Plz make some video as soon as possible 🙏🙏

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

    Harry Bhai please continue this playlist...

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

    bhai please make more video about ml please yar muze shirf tumhara hi technic samaj atta he

  • @user-mx6zz9de8p
    @user-mx6zz9de8p 5 місяців тому

    Please make a new videos on this topic so that we can learn ML better

  • @Himanshu-xt8wd
    @Himanshu-xt8wd 4 роки тому +1

    Amazing video, har topic to the point..👏👏👏

  • @karthikgayakwad1166
    @karthikgayakwad1166 6 місяців тому

    Bahut maza aya😊

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

    If you want to create your own MNIST like dataset quickly and easily then take a look at the InScribe app tool for iPad using the apple pencil to create digits and drawings for classification: ml-dataset-preperation-tool.web.app

  • @mayanktripathi4u
    @mayanktripathi4u 4 роки тому +2

    Hi Harry Sir,
    for this Handwritten Digit Recognition on MNIST... can we provide our own hand-written digit and test on it?
    I am trying the same, but getting error as
    `ValueError: Number of features of the model must match the input. Model n_features is 784 and input n_features is 8`
    I have reshape the test data into 28*28.. but still it is failing with same error.
    Any suggestion please.
    Code i am using after having the model created.
    from PIL import Image
    i = Image.open('img_of_4.png')
    img = np.asarray(i)
    plt.imshow(img)
    img.shape = (28,28)
    print(img.shape)
    print(clf.predict(img))

  • @prathmeshkulkarni2079
    @prathmeshkulkarni2079 Рік тому +2

    I am getting an error in last part
    from sklearn.model_selection import cross_val_score
    cross_val_score(clf, x_train, y_test_2, cv=3, scoring="accuracy")
    It is giving me a value error
    ValueError: Found input variables with inconsistent numbers of samples: [6000, 1000]
    Can anyone help???

    • @PranshuL001
      @PranshuL001 7 місяців тому

      How did you fix it ?

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

    amazing bro!! bhai asihi malware detection par ak video banao please

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

    bhai....aap ek project tensorflow me v bana dijiye..!! btw this one is awesome.

  • @make-your-rennzon5817
    @make-your-rennzon5817 3 роки тому

    thnax herry bhai..!!!!
    make more video....

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

    Can you please make a video about which features to use when working with our dataset

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

    Thank bahi bhot achi series he bahi

  • @Surajmathur-qj9tl
    @Surajmathur-qj9tl 5 років тому

    It's amazing video Harry sir

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

    should we use this while asked to Design a project from the MNIST dataset to identify digit classification using any of
    the classification algorithms.

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

    Harry bhai, please make a project on handwritten text recognition, this is only on character, but please make for full text..

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

    The starter code (for loading dataset) in the latest versions
    from sklearn.datasets import fetch_openml
    mnist = fetch_openml('mnist_784')

    • @Vicky-no7ou
      @Vicky-no7ou 3 роки тому

      mnist 784 not found show kr rha as i m using 0.24.2 sklearn version plz help

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

    please make more videos on this playlist ,full ml pleaseeee or more projects

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

    This one is informative, One doubt here.
    19:08 why we are shuffling only 60K instead of entire data set and then split in training and test.

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

      @@cyrilsouza6443 python doesn't have a compiler lol 😆

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

      Do you want me to send you the email

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

    At line - clf.fit(x_train, y_test_2)
    I am getting an error - Found input variables with inconsistent numbers of samples: [60000, 10000]
    Please help me solve this error!!!

  • @notknown84
    @notknown84 2 місяці тому

    Sir by changing the clf also the accuracy is close to 98% what does this mean then !?

  • @AnilSharma-ro7rf
    @AnilSharma-ro7rf 4 роки тому

    Haris bhai saare datasets ke saath 90% when (==2) and 97% when (!=2)

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

    U r amazing , can we have some videos on intent identification

  • @ADARSHSINGH-md6ot
    @ADARSHSINGH-md6ot 3 роки тому

    Doing a great job 😉

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

    i am getting error while reshaping.
    any help would be appreciated.

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

    Harry sir 👍

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

    Harry bhai.. ek insurance fraud detection ke upar ek video banao

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

    One more ERROR
    y_train = y_train.astype(np.int8)
    y_test = y_test.astype(np.int8)
    y_train_2 = (y_train == 2)
    y_test_2 = (y_test == 2)

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

    Bhai please ml and deep learning me vedios please bhai please bhai

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

    Bro you are awesome

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

    Sir kindly upload a video about handwriting detector Application using python for sentence. I am not talk about handwriting recognition. Give a complete details how we build this App? Lets take example I want to detect the twins handwriting? I want to build this App bu using GUI interface of python.

  • @allinone-px9wc
    @allinone-px9wc 5 років тому

    Love you bro keep this good work go on

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

    Sir aap ML ke baad AI course bi kare
    Hum logo ko bahut help hogi

  • @MukeshVerma-rr9bt
    @MukeshVerma-rr9bt 5 років тому

    I am new Learner from Sita pur (Uttar Pradesh)

  • @ManishKumar-fk9tw
    @ManishKumar-fk9tw 5 років тому

    I am biggest fan of you

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

    Please sir create a website for open a new bank

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

    Bhai Kya gajab cheese dikha diya

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

    I instead used svm classifier that classifies into 0-9 digits all.

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

    Sir, in the new versions, we can't select a row of the mnist data. It's showing me error.
    x = mnist['data']
    x[0]
    This x[0] is the error line. Please check it🙏

  • @iamromio-l3d
    @iamromio-l3d 24 дні тому

    harry bhai sirf simple sa code do yar jo kisi bhi folder me image jo hogi handwritten text wli usko read krske or output terminal me batasake

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

    nice work

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

    Thanks Harry bhai

  • @prajwalparab2435
    @prajwalparab2435 5 років тому +4

    How to install keras and tensorflow both on Spyder pe video please karo!!!!!

  • @ManishKumar-fk9tw
    @ManishKumar-fk9tw 5 років тому

    Sir C++ ka bhi pura tutorial video banao please

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

    thank you so much

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

    if we shuffled the data , what about we will get wrong lebels due to shuffling

  • @AhmadAli-jb6ri
    @AhmadAli-jb6ri 4 роки тому

    harrybhai sign languge translator py bnao koi project ya tensor flow kerwaa dein

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

    Thanks bro.

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

    cannot import name 'fetch_openml' from partially initialized module 'sklearn.datasets' (most likely due to a circular import) (C:\Users\utsav\AppData\Local\Programs\Python\Python311\Lib\site-packages\sklearn\datasets\__init__.py) Can you help me to resolve this

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

    Sir Daily News or Update ki video bano kariye app..
    Jaise
    Snapchat first Data Center in mumbai..
    Google spend 1.1b in Netherlands data centre..
    Make video plz

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

    hi harry bai
    your videos are really good .please keep up the great work
    Also could you please suggest some books to keep up with the course.
    it will be very useful in supplementing the videos with book to understand more

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

    sir maine matplotlib wala x(36000) and next line error show ho raha or iska koi solution nahi mil raha plz help me?

  • @AbulHasan-lg7ev
    @AbulHasan-lg7ev 5 років тому +1

    Sir movie recommendation projects start kro sir please

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

    Your videos are very helpful but I am unable to download necessary libraries for python and how I can make bluetooth app using python, please help

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

    Can you slice data for independent and dependent variables

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

    it is only applicable for 2 but not for the other images of digits for me may i know the reason

  • @vivekkumar-me3sz
    @vivekkumar-me3sz 4 роки тому

    harry bhai ML pe major project pe video banao

  • @GAU-C--RATNAKANTAHANSE
    @GAU-C--RATNAKANTAHANSE 2 роки тому

    Thank you sir.....

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

    Great!

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

    Thank you sir