Some people had problem downloading the CSV file. I added it to a GitHub repository you can access here: github.com/mosh-hamedani/python-supplementary-materials
for info: 1) At 32:52, to avoid UserWarning: X does not have valid feature names, we need to train the model with the values of input_dataset. i.e, use X.values instead of X in model.fit(X.values, y). 2) 42:04, joblib is now a seperate py package. we now need to import it as import joblib rather than from skilearn.externals. Anyway thanks Mosh for another great tutorial..
i thought to myself “i’ll watch a video in bed to fall asleep” - ended up watching the whole thing and realised how easy it is to get started with machine learning! thank you for the amazing video
@@programmingwithmosh sir I have a query regarding machine learning recently I have done a smoke absorber machine project ,but I have a dialemma that whether I can apply Machine learning concept to that project and how to apply ??. Can you Please help me out sir.??
i thought to myself “i’ll watch a video in bed to fall asleep” - ended up watching the whole thing and realised how easy it is to get started with machine learning! thank you for the amazing video
I am a university student. I was not good at programming in my first year, and always receive the less grade for programming. Then I followed your several courses. Now I am good at programming as well as other CS subjects. Thank you so much. Following your courses will make subject knowledge, how to learn programming, and how to think as a programmer. Highly recommend your all courses....❤
45:00 to visualize the decision tree right in the jupyter notebook. tree.plot_tree(model, feature_names = ['age', 'gender'], class_names = sorted(y.unique()), filled = True)
@@azariahazane4101 double check you copied it down correctly, tree.plot_tree(model, feature_names = ['age','gender'], class_names = sorted(y.unique()), filled = True) Copy and paste that because I know mine works
Modern teaching requires modeling, hands-on training and right to the point - step-by-step like you would do at a real the job. I believe Mosh is a natural born teacher who puts students first. He’s a true master of his craft. I want to enroll in you data science class. You are simply the best.
What I find fascinating is how schools struggle to teach kids because the teachers hate their job and don't want to be there along with the students, but you go to TH-cam and you find enthusiastic, detailed, videos along with people who legitamently want to help people learn. Then turn around and teach others how to do what they were taut and all that for the low low price of a like, comment and subscribe. I learn and use very very little of what I learned in school, but I know and learned so much more from TH-cam. I know alot about Python, HTML, and Unity, SQL Database, Hacking, Pentation testing, building, home repair, car repair, and robotics ALL OF IT from TH-cam not school. Thank You!
You are the only one in TH-cam who actually made ML for beginners so much understandable. It will be a sin if I do not acknowledge you. Thanks for your tutorial. Just awesome.
Python is so strong,with few lines of code you can build a predictive decision tree modal. I am not a programmer , I'm self learner about data analytics and science , but I use python for data analytics and forecasting in my marketing job and results are very accurate. This tutorial is amazing way to get away with data science and machine learning tasks.
From about 43:30, You can also plot the decision tree in Jupyter without creating a dot file. Just replace the tree.export_graphviz method with tree.plot_tree and leave out the "out_file" kwarg.
Nope, tree.export_graphviz did not work for me. used graphviz preview by EFanZH after exiting VSCode, did the following: a) Installed GraphViz (for all users) either directly from the marketplace or via the VSCode extension install method - I prefer the direct install for this one… but…. powershell install is another way using ===>> winget install graphviz b) in powershell, verified it was up with dot -V c) edited the system PATHs (both of them) in environmental variables, using: C:\Program Files\Graphviz & C:\Program Files\Graphviz\bin for both PATH sections d) restarted the PC (just in case) e) opened VSCode There it is…
Dude you are literally amazing, few months ago I bought your Python Mastery Course now you uploaded this for free, you are saving millions of people (by getting jobs) lol
41:00 those who wondering why the joblib module is not working, please note that joblib is not included in scikit's new versions. if you have anaconda, just directly import joblib and use it else do "pip install joblib".
@@SaurabhSingh-kc8tm Nope. You have to learn more things gradually. This is the first step to make a strong base in ML using python. After that you can watch Videos from Coursera - Machine Learning (University of Stanford) - By Andrew NG
I watched it completely... In parallel, I have practised the code, and executed and understood every line of the CODE. Highly recommended ML with the PYTHON Tutorial video
Thank you so much for the tutorial.❤ import pandas as pd from sklearn.tree import DecisionTreeClassifier from sklearn.model_selection import train_test_split from sklearn.metrics import accuracy_score music_data = pd.read_csv('music.csv') x = music_data.drop(columns=['genre']) y = music_data['genre'] x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.2) model = DecisionTreeClassifier() model.fit(x_train, y_train) predictions = model.predict(x_test) accuracy = accuracy_score(y_test, predictions) accuracy
You're a gifted teacher Mosh. I lost your channel on my old TH-cam account, I just found your channel again. Do you have a longer machine learning tutorial covering clustering, classification, neuro networks, and logical regression?
I am not going to lie, but that was one of the best video tutorials I have seen on ML. I kept on thinking that ML would be beyond me, but I ,amaged to grasp the fundamentals and understood further. Thank you so much for this. You have a subscriber.
Your assumptions in the kind of music liked based on age prediction,It's quite true. Building a model of such truly shows that you are one of the best guys who totally know what he does for real. Mosh, I doff my hat. Just keep it rolling !
Awesome video! Not only the video provided fast track intro into the world of machine learning, but also creates interest in us to learn it even if we weren't interested before. Great stuff Mosh!
HELLO MOSH PLEASE CONSIDER MAKING MORE VIDEOS ON MACHINE LEARNING LIKE THIS,YOU'RE MY FAVOURITE AND BEST INSTRUCTOR,YOUR WAY OF INSTRUCTING IS TO ANOTHER LEVEL.THANKS VERY MUCH FOR THIS! HOPING MORE IS COMING FROM YOU ON THIS FIELD
Hey, anyone out there reading this comment. I just wanna say GOOOD JOB!, to anyone who completed this course video! 👍👍👍 Let's build professional knowledge in Machine Learning Starting from here
Your was the best course I've taken in programming. It even solves my other problems that I had with python that even google couldn't answer me. Thanks.
Hey Mosh, your contents and teaching style are straightforward and easy to follow. It would be great help if you do some tutorials based on medical imaging (CT,MRI) data! I am having difficulties in dealing with those. Thank you!
That's one of the cool things about machine learning and why I want to get into it; it is applicable to virtually every subject matter and field. For Mosh to do specific use cases, I suppose they would have to become common or popular enough for him to do a video tutorial. He could also place it behind a pay wall as he does have lots of more in=depth content that costs money; check the description for links if you're interested.
I'm so glad I stumbled upon this. You are amazing! This was very pleasant and easy to follow. I learned a ton and I especially like that you took us through your thought process while examining the music data set, too. Thank you very much! Subscribed.
MOSH HAMEDANI YOU GENIUS. PLEASE MAKE MORE DATA SCIENCE CONTENT. I'M VENTURING INTO THE FIELD AND MOST TUTORIALS THAT I WATCH ARE ALWAYS DIFFICULT TO UNDERSTAND. WITH YOU IT'S LIKE I UNDERSTAND EVERY WORD YOU SAY.
Hi Mosh, Me and my friends have been watching most of your content of the python (the previous videos), we are currently leading C and C++, our professor is super fast and boring ,as it's his first class and he just completed his PhD, I request you to atleast upload C language, you explain really well and systematically, he is just jumping from loops to arrays, explaining basics for a few minutes and starts to write lengthy codes. Please upload C language related content, It will be really helpful.
MOOOOOSH! I found you earlier this week and bought your Python course. You teach so simply and clearly, thank you! Will you be coming out with a Machine Learning full course on your site soon? I need it yesterday!
I recently took some advanced ML courses partially but was unsure of how to handle real-world data even if I finish the course, but this basic course gave me a great foundation and the confidence to understand how machine learning works. Thank you so much for your help.
0:39:41 Persisting Models: I couldn't save my model because of this line: 'from sklearn.externals import joblib'. You may encounter this error: 'cannot import name 'joblib' from 'sklearn.externals''. I replaced that line with direct import 'import joblib', and it solved the issue.
I love the way you teach. Repeatedly just stretching the topic a bit more...a bit more...a bit more. So straight forward to follow (Though still working on some of my understanding) and your explanations along the way are so relatable and understandable. Awesome dude!
When your flutter course is going release. Please mosh you are the greatest teacher I have ever in my life. Please tell us when your flutter course is going release. Can't wait for it... please
am eltrician but ihave completed but python have bcom my best carrieeer from kenya kiambucounty githunguri subcounty kanjuku villege am sammy i like you teaching
Mister Mosh, thank you for all of the easy to follow tutorials that you make for us, please keep keep up the good work, i hope you post more courses (preferably in python) :)
This was excellent material! Nice to see how well planned and put together this whole thing was. Very professional content! And it actually got me to open my laptop to download jupyter to try this out...and start learning python along the way lol! I come from programming background so not too worried about that, I just mention this as a testament to this video and as feedback to the appeal it had for this particular viewer. 👍
Thanks for doing this!!!! You mastered the art of content creation. I was asking you to do this for a quite long time. Looking forward to an end to end ML & DL COURSES.
As Windows User I could only display the decision tree at the end of the video by the use of "Graphviz Interactive Preview" by "tintinweb". Then a very small "dot" icon brought up the visualization
the 3 dots in VS Code at 46:47 no longer provide the "Open Preview to the Side" and the shortcut "command K V" also don't lead to the decision tree... if anyone has an idea how to fix this, please lmk. Thank you
Mosh sir is amazing. Easy to understand what he saying and his explanations are great. Wish you a good life sir from Singapore. As i was a new developer i searched for bunch of tutorials courses etc. but i didn’t got any good source to learn. Finally i found Mosh sir. Now I’m a programmer work in a company. If some one asks me about a source to learn programming my first word is Programming with Mosh. Thank you very much sir.
For all the windows users, the music_data file in the description of this video will not work when you will import it in jupyter notebook. So simply, open this zip file in your file explorer and delete an extra folder from the file named as ' __MACOSX '. Next re-run your program, and it will work :)
Mosh, do you mind sharing your learning methods? I'm impressed on how you can learn so many different language/framework but still master them. Thank you.
This is the type of thing I have to read, watch ask questions. Your video is a great presentation, repeating a lot of what I have already read/been taught. It is nice to see the same information presented multiple ways. Thank you
At 41:06, where Mosh types 'from sklearn.externals import joblib', I (and many other people) get the error that the module could not be found. The fix is to import joblib directly like: 'import joblib as jb' and use it as 'jb.dump(.........)' later on.
Some people had problem downloading the CSV file. I added it to a GitHub repository you can access here: github.com/mosh-hamedani/python-supplementary-materials
Hi, I can't find the csv here either.
its a different file in there called music csv. The vgsales.csv file is not linked there
Cant find the data there
file
for info:
1) At 32:52, to avoid UserWarning: X does not have valid feature names, we need to train the model with the values of input_dataset. i.e, use X.values instead of X in model.fit(X.values, y).
2) 42:04, joblib is now a seperate py package. we now need to import it as import joblib rather than from skilearn.externals.
Anyway thanks Mosh for another great tutorial..
Thanks for the help!
Welcome
Thank you!
Thank you, kind person! God bless you!
thanks
I haven't come across a tutorial that helps a complete beginner understand Machine Learning like this video. Its super simplified. Thanks a million.
Use Kaggle, it really helped me out a lot
share it with us plz
i thought to myself “i’ll watch a video in bed to fall asleep” - ended up watching the whole thing and realised how easy it is to get started with machine learning! thank you for the amazing video
I’m literally doing the exact same thing lol. It’s 3:28 am
@@codyhaeysits 3:37 now here😅😂
is there any more video to get more advanced with this machine learning?
@@codyhaeys3:18 right now here
I'm so happy that you started giving courses on machine learning. I appreciate your clear teaching style.
@@programmingwithmosh, Do you have a full course in this subject please?
@@programmingwithmosh sir I have a query regarding machine learning recently I have done a smoke absorber machine project ,but I have a dialemma that whether I can apply Machine learning concept to that project and how to apply ??. Can you Please help me out sir.??
Yes I agree. Knowledge point to point. We love Moshs' teach style. Lots of Love from Nepal 🎉😘💐
@@programmingwithmosh I was wondering if you could make more Machine Learning project videos
hey, I can't find his machine learning course. can you please share the link.
i thought to myself “i’ll watch a video in bed to fall asleep” - ended up watching the whole thing and realised how easy it is to get started with machine learning! thank you for the amazing video
Why did you copy someone else's comment? Are you incapable of generating original thought?
You are the reason why I started programming. I'll never forget the things you've done to help me.
Same bruhhhh !!!!!!!!!!
me3
Is this tutorial useful for someone who is beginning in data science?
@@Intellectual_House yes, for people like me who have been intro android for a while
@@codespear could you recommend me any data science with python channel?
I am a university student. I was not good at programming in my first year, and always receive the less grade for programming. Then I followed your several courses. Now I am good at programming as well as other CS subjects. Thank you so much. Following your courses will make subject knowledge, how to learn programming, and how to think as a programmer.
Highly recommend your all courses....❤
Dude, ive been working with python for 2 years and never really dove into machine learning. This was such a cool tutorial thank you!
45:00 to visualize the decision tree right in the jupyter notebook.
tree.plot_tree(model, feature_names = ['age', 'gender'],
class_names = sorted(y.unique()),
filled = True)
lifesaver
YOU ARE THE MAN
how did you figure that out? I was stumped until I saw your comment. Thank you so much.
doesn’t work for me. it says list object has no attribute
@@azariahazane4101 double check you copied it down correctly,
tree.plot_tree(model, feature_names = ['age','gender'],
class_names = sorted(y.unique()),
filled = True)
Copy and paste that because I know mine works
data analysts should be charged for animal trafficking,, as they import pandas and feed them to python.
Hahaha that's funny
good sense of humour :)
we are laughing; really
Funny guy I like it
@@Abdul1999- 🤪🤭
Modern teaching requires modeling, hands-on training and right to the point - step-by-step like you would do at a real the job. I believe Mosh is a natural born teacher who puts students first. He’s a true master of his craft. I want to enroll in you data science class. You are simply the best.
Df _..... Plz how can find this in clavier (df _ pd.read_csv(vgsales.csv)
_ is not work with color pink
What I find fascinating is how schools struggle to teach kids because the teachers hate their job and don't want to be there along with the students, but you go to TH-cam and you find enthusiastic, detailed, videos along with people who legitamently want to help people learn.
Then turn around and teach others how to do what they were taut and all that for the low low price of a like, comment and subscribe. I learn and use very very little of what I learned in school, but I know and learned so much more from TH-cam. I know alot about Python, HTML, and Unity, SQL Database, Hacking, Pentation testing, building, home repair, car repair, and robotics ALL OF IT from TH-cam not school.
Thank You!
I finally got a video explaining only the topic of machine learning with python! Thank you very much Mosh! Really love this channel :)
Words are not enough to appreciate what you present in your channel, I do believe you are number one in programming.
completely agree
NOW THAT'S THE DEFINITION OF A PERFECT FULL FLEDGED TUTORIAL IN LESS TIME.
THANK YOU
Mosh You're really helping the students which cannot afford the costliest courses online. Thanx, a lot mosh, you're such an amazing person.
You are the only one in TH-cam who actually made ML for beginners so much understandable. It will be a sin if I do not acknowledge you. Thanks for your tutorial. Just awesome.
Finally, I found something practical rather than theoretical.
Thank you sir😇
Any other good videos ?
Python is so strong,with few lines of code you can build a predictive decision tree modal. I am not a programmer , I'm self learner about data analytics and science , but I use python for data analytics and forecasting in my marketing job and results are very accurate. This tutorial is amazing way to get away with data science and machine learning tasks.
You are the best teacher please make a full course on machine learning and deep learning.
Yeah mosh please we need machine learnings full course
@@mohammedfawaaz693 agreed!!!!!
@@mohammedfawaaz693 Yes agree tensorflow, keras and scikit learn.
Have patience there are other tutorials out there if you really need it now
@@bijoyketonWe want moshs style of explanation of machine learning viz best
I've watching many videos about python, machine learn, sci-kit learn, computer languages and I think your videos are the best, highly didactical.
From about 43:30, You can also plot the decision tree in Jupyter without creating a dot file. Just replace the tree.export_graphviz method with tree.plot_tree and leave out the "out_file" kwarg.
excellent, 100% working Thanks
Thank you! This is useful, because somehow the option: "open preview to the side" didnt show up for me
@@yahalo4409 Same... Very annoying
It works. Thank you! I have the same problem that "Open review to the side" didn't show up.
Nope, tree.export_graphviz did not work for me.
used graphviz preview by EFanZH
after exiting VSCode, did the following:
a) Installed GraphViz (for all users)
either directly from the marketplace or via the
VSCode extension install method - I prefer the direct install for this one… but….
powershell install is another way using ===>> winget install graphviz
b) in powershell, verified it was up with dot -V
c) edited the system PATHs (both of them) in environmental variables, using: C:\Program Files\Graphviz & C:\Program Files\Graphviz\bin for both PATH sections
d) restarted the PC (just in case)
e) opened VSCode
There it is…
You are the best teacher I've ever come across. You're better than our lecturers, lecturers teach us only to pass exams.
Dude you are literally amazing, few months ago I bought your Python Mastery Course now you uploaded this for free, you are saving millions of people (by getting jobs) lol
I'm flat out amazed how easy sklearn is to use. It basically does all the work for you.
Great you are the best instructor and software engineer in the world you teach the best course in the world 😎😎😎👍👍👍👍👌👌👌👌✌✌🔥🔥🔥☄☄☄
41:00 those who wondering why the joblib module is not working, please note that joblib is not included in scikit's new versions. if you have anaconda, just directly import joblib and use it else do "pip install joblib".
Thank you man ❤️ after completing your 6 hours python course. I loved the way you teach 🤩 This is what I'm waiting for 😍 Thank you Mosh 😊
Same here.Thanku Mosh!
is this enough video for machiine learning with python?
@@SaurabhSingh-kc8tm Nope. You have to learn more things gradually. This is the first step to make a strong base in ML using python. After that you can watch Videos from Coursera - Machine Learning (University of Stanford) - By Andrew NG
@@ammaraltaf8332any other good video to suggest for more data science learning ?
I am a little bit lost and need some orientation 😢
I watched it completely... In parallel, I have practised the code, and executed and understood every line of the CODE.
Highly recommended ML with the PYTHON Tutorial video
Thanks, now I got an overview of what Machine learning is all about, and how we go about solving problems using algorithms. THANKS.
Best tutorial to get started with machine learning
This is probably the best tutorial on ML for
beginners
loved the tutorial. I wish you cover more ML algorithms specially NLP.
I have been looking for courses for a while, then I thought about looking on youtube and of course this is where all the best courses are.
Thank you so much for the tutorial.❤
import pandas as pd
from sklearn.tree import DecisionTreeClassifier
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score
music_data = pd.read_csv('music.csv')
x = music_data.drop(columns=['genre'])
y = music_data['genre']
x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.2)
model = DecisionTreeClassifier()
model.fit(x_train, y_train)
predictions = model.predict(x_test)
accuracy = accuracy_score(y_test, predictions)
accuracy
You're a gifted teacher Mosh. I lost your channel on my old TH-cam account, I just found your channel again. Do you have a longer machine learning tutorial covering clustering, classification, neuro networks, and logical regression?
You are recalling trying to help some people from novice to professional, whoever take there time to watch and practice this will understand
Feels like a lecture in a prestigious european university. Thanks Mosh.
If someone still want to use vscode. Vscode just created an extension for Jupyter in 2021
I am not going to lie, but that was one of the best video tutorials I have seen on ML. I kept on thinking that ML would be beyond me, but I ,amaged to grasp the fundamentals and understood further. Thank you so much for this. You have a subscriber.
Your assumptions in the kind of music liked based on age prediction,It's quite true. Building a model of such truly shows that you are one of the best guys who totally know what he does for real. Mosh, I doff my hat. Just keep it rolling !
my interest towards machine learning has increased..thank you sir 🙏🏻
Awesome video! Not only the video provided fast track intro into the world of machine learning, but also creates interest in us to learn it even if we weren't interested before. Great stuff Mosh!
This is ML simplified- the a,b,c... of ML. Thank you Mosh
HELLO MOSH PLEASE CONSIDER MAKING MORE VIDEOS ON MACHINE LEARNING LIKE THIS,YOU'RE MY FAVOURITE AND BEST INSTRUCTOR,YOUR WAY OF INSTRUCTING IS TO ANOTHER LEVEL.THANKS VERY MUCH FOR THIS! HOPING MORE IS COMING FROM YOU ON THIS FIELD
Hello any good links for machine learning
Hey, anyone out there reading this comment.
I just wanna say GOOOD JOB!, to anyone who completed this course video! 👍👍👍
Let's build professional knowledge in Machine Learning Starting from here
I'm really glad that I watched this video! now we are working on Machine Learning base project for our Thesis. Thank you for your amazing work!
Just wow! Im currently in a bootcamp on machine learning but this vid is 10000x way easier to understand
This kind of topics I expect from you for a long time man....keep rocking mosh 😁
Siva bro yellame padustiya bro coding theriyuma bto
@@mumbaiindiansfan3087 python ah
@@Siva-lx9dw aama bro entha channel la easy a padikalam sollunga bro
@@mumbaiindiansfan3087 intha channellaye python 6hours video irukum bro atha paarunga ...easy ah understand aagum...
@@mumbaiindiansfan3087 th-cam.com/video/_uQrJ0TkZlc/w-d-xo.html
Your was the best course I've taken in programming. It even solves my other problems that I had with python that even google couldn't answer me. Thanks.
This is the best tutorial I've ever seen. The best use of time .❤️
This is the best, precise video on ML. You have demystified the concept in an excellent way. Thank you so much Mosh for this great work.
Rather than run button we can press shift+enter for output
You're one of the best teachers ever!
Please make more Machine Learning videos.
Thank you for this!
Hey Mosh, your contents and teaching style are straightforward and easy to follow. It would be great help if you do some tutorials based on medical imaging (CT,MRI) data! I am having difficulties in dealing with those. Thank you!
This would really be helpful
That's one of the cool things about machine learning and why I want to get into it; it is applicable to virtually every subject matter and field. For Mosh to do specific use cases, I suppose they would have to become common or popular enough for him to do a video tutorial. He could also place it behind a pay wall as he does have lots of more in=depth content that costs money; check the description for links if you're interested.
I am old but I love your simple but practical presentation of python in shortest time
Can you make a tutorial to make an AI chatbot?
Sir, Your are best ML TEACHER ON TH-cam.
I'm so glad I stumbled upon this. You are amazing! This was very pleasant and easy to follow. I learned a ton and I especially like that you took us through your thought process while examining the music data set, too. Thank you very much! Subscribed.
MOSH HAMEDANI YOU GENIUS. PLEASE MAKE MORE DATA SCIENCE CONTENT. I'M VENTURING INTO THE FIELD AND MOST TUTORIALS THAT I WATCH ARE ALWAYS DIFFICULT TO UNDERSTAND. WITH YOU IT'S LIKE I UNDERSTAND EVERY WORD YOU SAY.
Please make a deep learning tutorial also please, This course helped me a lot. Please Thank you mosh you are the best guru.
Hi Mosh, Me and my friends have been watching most of your content of the python (the previous videos), we are currently leading C and C++, our professor is super fast and boring ,as it's his first class and he just completed his PhD, I request you to atleast upload C language, you explain really well and systematically, he is just jumping from loops to arrays, explaining basics for a few minutes and starts to write lengthy codes. Please upload C language related content, It will be really helpful.
you do an amazing job of breaking down complex concepts into simple, practical and relatable forms! Great tutorial. THANK YOU!
MOOOOOSH! I found you earlier this week and bought your Python course. You teach so simply and clearly, thank you! Will you be coming out with a Machine Learning full course on your site soon? I need it yesterday!
??
Mosh seems to know everything, from software, DS to ML. I knew you when I was learning software, and here we meet again...
which means he knows absolutely nothing
@@ZyklonB-88 lol interesting thought
I recently took some advanced ML courses partially but was unsure of how to handle real-world data even if I finish the course, but this basic course gave me a great foundation and the confidence to understand how machine learning works. Thank you so much for your help.
Is this tutorial useful for someone who is beginning in data science?
0:39:41 Persisting Models: I couldn't save my model because of this line: 'from sklearn.externals import joblib'. You may encounter this error: 'cannot import name 'joblib' from 'sklearn.externals''. I replaced that line with direct import 'import joblib', and it solved the issue.
very useful, thank you: i got stuck with that issue for a bit
I love the way you teach. Repeatedly just stretching the topic a bit more...a bit more...a bit more. So straight forward to follow (Though still working on some of my understanding) and your explanations along the way are so relatable and understandable. Awesome dude!
When your flutter course is going release. Please mosh you are the greatest teacher I have ever in my life. Please tell us when your flutter course is going release. Can't wait for it... please
I aldo really want that course
@Tech With Tim has one you can follow that seies if you really gonna die if you dont learn it
@@bijoyketon I know but while tech with tim is awesome mosh explains this stuff lot more in detail and more deep
th-cam.com/channels/UEuQY2PwZDar70aly6ZNrQ.html
am eltrician but ihave completed but python have bcom my best carrieeer from kenya kiambucounty githunguri subcounty kanjuku villege am sammy i like you teaching
Sir you read my mind this was just the tutorial I was looking for. As before you are the best
I just searched about this tutorial today
He uploaded this a year ago under python tutorial , now he just bifurcated that and uploaded seperately
@@universal4334 Yes, but it's quite good for people who never searched for full python course.
Dude is the best thing that has ever happened in me life
man this seems exciting as hell. I'm deep into javascript, react and all that stuff now but I'm gonna def come back to this sometime in the future.
Thank you very much sir, I've never seen a full tutorial like this
specifically for machine learning, data preparation until visualization
The way you explain is amazing! Do you have a course completely on machine learning? Thanks
I'm a newbie here. I've downloaded this 6hrs long video. Trust I'm not wasting my time.
Mister Mosh, thank you for all of the easy to follow tutorials that you make for us, please keep keep up the good work, i hope you post more courses (preferably in python) :)
This was excellent material! Nice to see how well planned and put together this whole thing was. Very professional content! And it actually got me to open my laptop to download jupyter to try this out...and start learning python along the way lol! I come from programming background so not too worried about that, I just mention this as a testament to this video and as feedback to the appeal it had for this particular viewer. 👍
Df _..... Plz how can find this in clavier (df _ pd.read_csv(vgsales.csv)
_ is not work with color pink
First time i understood from a youtuber who speak in English
Very good video
Thanks for doing this!!!!
You mastered the art of content creation. I was asking you to do this for a quite long time. Looking forward to an end to end ML & DL COURSES.
its amazing for getting high level view view of how ml models works it was my first tutorial related ml everything is crystal clear.
If you have a problem with importing joblib you can just write "import joblib" instead of "from sklearn.externals import joblib"
most complete introduction of machine learning ever
Seriously this tutorial is going amazing ☺️😊
Thank you so much mosh.
@@programmingwithmosh yes 😊🥰
@@programmingwithmosh can you help me with that graphiz part 😑
Great video. Took a machine learning course during undergrad but forgot most of it. After watching this video things came back. Thank you.
At perfect time I have just finished pandas numpy matplotlob😍🤟
@Rahul Ranjan yup I have learned that it really helped me🤟
@Rahul Ranjan ok thanks
@Rahul Ranjan bro I am from Pakistan .
@Rahul Ranjan 😂ok
I have programming background. For a new student, especially those never program before, this is really loaded.
Please a mega tutorial about this! 20hrs
Pretty fun to get started with machine learning. Now I've got some inspiration to move next.
As Windows User I could only display the decision tree at the end of the video by the use of "Graphviz Interactive Preview" by "tintinweb". Then a very small "dot" icon brought up the visualization
Thanks! :)
The clearest tutorial I found on YT! Thanks a lot!
the 3 dots in VS Code at 46:47 no longer provide the "Open Preview to the Side" and the shortcut "command K V" also don't lead to the decision tree... if anyone has an idea how to fix this, please lmk. Thank you
Mosh sir is amazing. Easy to understand what he saying and his explanations are great. Wish you a good life sir from Singapore. As i was a new developer i searched for bunch of tutorials courses etc. but i didn’t got any good source to learn. Finally i found Mosh sir. Now I’m a programmer work in a company. If some one asks me about a source to learn programming my first word is Programming with Mosh. Thank you very much sir.
For all the windows users, the music_data file in the description of this video will not work when you will import it in jupyter notebook. So simply, open this zip file in your file explorer and delete an extra folder from the file named as ' __MACOSX '. Next re-run your program, and it will work :)
Excellent Clear Explanation. Thank you sir
Mosh, do you mind sharing your learning methods? I'm impressed on how you can learn so many different language/framework but still master them. Thank you.
Dude he already told in his website...just go through it.
codewithmosh.com/p/fundamentals
Thanks for pointing it out dude. I didn't know it exist. 😁
This is the type of thing I have to read, watch ask questions. Your video is a great presentation, repeating a lot of what I have already read/been taught. It is nice to see the same information presented multiple ways. Thank you
At 41:06, where Mosh types 'from sklearn.externals import joblib', I (and many other people) get the error that the module could not be found. The fix is to import joblib directly like: 'import joblib as jb' and use it as 'jb.dump(.........)' later on.
This is incredibly helpful. I'm doing research using these skills in the fall and while I'm STEM, I am NOT a CS major