Build Your First Machine Learning Project [Full Beginner Walkthrough]

  Рет қаралды 146,386

Dataquest

Dataquest

Күн бұрын

Пікірлер: 107
@Prathmesh_salve
@Prathmesh_salve 9 ай бұрын
First person i saw who is explaing just perfectly and can be understand by a student thanks ane keep it up sir.
@Fakipo
@Fakipo 2 жыл бұрын
I was just studying the concepts for so long and getting overwhelmed, this video definitely helped to get the bigger picture.
@harshitmeena3366
@harshitmeena3366 4 ай бұрын
Exactly bro can you tell me what you did after this to become better in machine learning
@kumelachewmaru2225
@kumelachewmaru2225 Жыл бұрын
love the simplicity of your step by step method. I am absorbing a lot in just one pass. Thank you and well done.
@renumaryjose4687
@renumaryjose4687 2 ай бұрын
Astounded on how "simple" and at the same time "explanatory" is the presenter in delivering the content. True to the title.. "Beginner" friendly indeed... Kudos...Appreciate if you can bring such an end to end project including connecting a cloud based database to get data and a front end
@hiteshallakki1740
@hiteshallakki1740 2 жыл бұрын
Great video.Really liked the way you explained it before ,instead diving into the code.Thanks
@allahjoseph
@allahjoseph Жыл бұрын
Thank you for providing such a great resource and making ML so digestible! YOU are who introduced me to machine learning, and I love it. I'm looking forward to applying everything I learn to my own projects!!!
@gogogaming1491
@gogogaming1491 2 ай бұрын
great work sir as a beginner it really found me helpful . which gave me better understanding about ML usage in real world Thank you
@maxivy
@maxivy Жыл бұрын
You are a very good teacher and deserve more subs.
@michaelmitchell155
@michaelmitchell155 Жыл бұрын
A very comprehensive and well explained intro into the workings of the project. I got a lot out of it. Thank you.
@sm-pz8er
@sm-pz8er 10 ай бұрын
Perfect. Best video I’ve found precious and easy to understand so far. Thank you
@pluderr3947
@pluderr3947 10 ай бұрын
@ 12:14 teams.corr()["medals"] didn't work for me so I did corr = teams.drop(["team", "country"], axis=1).corr()["medals"] print(corr) for those who are also running into the same issues as me :)
@kayo5011
@kayo5011 8 ай бұрын
It worked thanks
@rohithsrisaimukkamala
@rohithsrisaimukkamala 8 ай бұрын
or u can use teams.corr(numeric_only="true")["medals"]
@rodo2220
@rodo2220 7 ай бұрын
@@rohithsrisaimukkamala thank you!
@JoshuaStorm-zi1wy
@JoshuaStorm-zi1wy 7 ай бұрын
@@rohithsrisaimukkamala Thanks!
@kavinesh4470
@kavinesh4470 7 ай бұрын
Thanks🙏🙇
@BHAVANAMUNUGAPATI
@BHAVANAMUNUGAPATI Жыл бұрын
excellent video sir ji.... thanks a lot for such concepts... and your English fluency is amazing Indian
@sushantshankar8477
@sushantshankar8477 8 ай бұрын
Loved it! superb explanation 😍
@bumohamed624
@bumohamed624 Жыл бұрын
Thanks a lot , it helps to understand ML with basic steps
@luqmanjuzaili5213
@luqmanjuzaili5213 6 ай бұрын
Thank you for the amazing video! However, when I tried running this, I received a value error teams.corr()["medals"] This seems to be because the "Team" and "Country" column are in string, and hence making it impossible to get a corr value. So i removed them just to obtain the corr values. But it seems to work for you without filtering the string type columns out. Any ideas why?
@IsoAktiv
@IsoAktiv Жыл бұрын
Albania was in the olympics 1992 and i guess any other countries in that csv were also. They just did not win any medals, that's why there are missing values. So actually setting them to zero instead of dropping them is more accurate. In theory you would prefer first or second party data, in this case u would have to do some research to clarify the reson for missing values in the data set.
@adarshbalachandar
@adarshbalachandar 10 күн бұрын
There are missing values because they did not participate in the previous olympics. there are also countries with prev_medals=0. notice it is 'prev_medals' and not 'medals'. But dropping the entire row or not is a question.
@viewpoint8976
@viewpoint8976 5 ай бұрын
This video realy shows how things are done.
@DEDE-ix9lg
@DEDE-ix9lg Жыл бұрын
Amazing . this was simple and great . very very very well done !!!!
@scarlettran-
@scarlettran- Жыл бұрын
thank you so much!!! you are a really good teacher
@muhamadaidilazharanuar6605
@muhamadaidilazharanuar6605 2 ай бұрын
Thank you so much for the through explaination , i can replicate it through the vscode
@josearmandovivero408
@josearmandovivero408 Жыл бұрын
Thanks! This video is exactly what I needed 😀
@chessconfused6528
@chessconfused6528 Жыл бұрын
Your courses are awesome!!!
@rosemaryonondje7953
@rosemaryonondje7953 2 жыл бұрын
A great video! This answered some of my questions. Thanks
@Dataquestio
@Dataquestio 2 жыл бұрын
Glad it was helpful!
@TT-oy8bq
@TT-oy8bq 8 ай бұрын
Incredible Teaching !
@vamsikrishna-j9n
@vamsikrishna-j9n Жыл бұрын
sir that was really simple and very well explained also excellently organised...... yet I struggled at one point I couldn't convert string(teams) to float while performing the corelation....if you see this hope you reply .....
@SiddheshRajale
@SiddheshRajale Жыл бұрын
did you found out the solution
@darrentan271
@darrentan271 9 ай бұрын
@@SiddheshRajaledf.corr(numeric_only=True)
@willII0522
@willII0522 2 жыл бұрын
I like how you showed to use the later data to test the model, but do you have a video that shows how to use the data to predict the future Olympics?
@mayumiomita9904
@mayumiomita9904 5 ай бұрын
insightfull sir, thanks in advance
@haythamroshdy4189
@haythamroshdy4189 Жыл бұрын
I love your English Your English is so perfect as indian
@prateekshakatiyar4712
@prateekshakatiyar4712 18 күн бұрын
I don't get how i get dataset 😭 i mean from the starting of the code when i run two lines it shows me error 😭😭
@tajinjahan7446
@tajinjahan7446 Жыл бұрын
hi... how to sort the excel data into integer values?
@ranahuzaifa147
@ranahuzaifa147 Жыл бұрын
Thank you for the video.
@patiakreles
@patiakreles 3 ай бұрын
In step 5 the formula is not the mean absolute error.. you are missing the 1/D. Training with data that us wrong and fitting linearly when it seems exponential.
@lollxxd6141
@lollxxd6141 4 ай бұрын
thank you so much man
@crispineda4630
@crispineda4630 Жыл бұрын
Is there a reason why the Plots disappear after running the code a second time on Jupyter notebook? They don't show anything anymore.
@rayr268
@rayr268 10 ай бұрын
Would love a math course that is shown directly relating to ML that I can take to get up to speed. for someone that might be self taught in tech w/ only a highschool education
@ShivendraParmar-dp3rp
@ShivendraParmar-dp3rp 6 ай бұрын
guys why after test['predictions']=predictions , size of array disturbing instead of 405*8 its coming 405*413 can anyone help me out with it
@daudisraf5564
@daudisraf5564 8 ай бұрын
There seems to be a problem when I run 'teams.corr()["medals"]'. Keeps throwing an error "ValueError: could not convert string to float: 'AFG''. Checked unique values and NaN. confused!
@liewkangzhen157
@liewkangzhen157 6 ай бұрын
I faced the same problem as well, but managed to solve it. The error is due to some columns in teams that are nonnumerical like team and country, so i created a new table, ie teams = teams.drop(columns = [‘team’, ‘country’]) and it should work. Hope this helps.
@getinspired1669
@getinspired1669 4 ай бұрын
hey, can i do a similar project for my college minor project ?
@hanazhafirahhanifah8175
@hanazhafirahhanifah8175 2 жыл бұрын
Thank you for such a nice video! I have a question though about the error_ratio. You said countries like FRA, CAN, and RUS get a lot of medals in the olympics and it shown that their error ratio is low. With what should I compare the value of error_ratio?
@1622roma
@1622roma Жыл бұрын
what a good question! I hope he responds back to you.
@yayasssamminna
@yayasssamminna Жыл бұрын
why do you want to compare it?
@muradbayr9900
@muradbayr9900 6 ай бұрын
Please guys help me on the first step got stuck cannot import csv kinda problem with pandas
@baeche
@baeche Жыл бұрын
Great video. What python interpreter are you using?
@eduardtoronto
@eduardtoronto Жыл бұрын
Maybe you meant IDE (integrated development environment)? Python only has one interpreter, it's builit-in and it compiles/interpretes the code. I'm pretty sure the IDE he is using in the video is Project Jupyter (interactive development environment) which is pretty much a standard environment in machine learning, data analytics, statistical analysis etc.
@baeche
@baeche Жыл бұрын
Sorry, of course I meant IDE@@eduardtoronto What differs from mine (PyCharm) is that the code gets executed immediately and the result are showd. I have to use the print command for that. Or is the video just edited?
@eduardtoronto
@eduardtoronto Жыл бұрын
@@baeche In jupyter ENTER inserts a new line, SHIFT+ENTER executes the code. Everything gets executed immediately. It depends on the functions he's using e.g. copy() gets executed but it wont print any output whereas something like 'shape' will output the result to the console like print.
@baeche
@baeche Жыл бұрын
Thank you very much@@eduardtoronto I moved to google colab where the last command gets printed too. I find google colab handy as I can work in the browser. Where I experience problems is accessing a SQL Server (not SQ Lite, mysql). Any idea where I can look for help? ChatGPT could not.
@DaltonBurkhart
@DaltonBurkhart Жыл бұрын
Great video! What coding software did you end up using for this (I haven't seen this python software before which is why I ask)?
@enyelgomezmoya9682
@enyelgomezmoya9682 Жыл бұрын
That's Jupyter
@raanonyms7926
@raanonyms7926 11 ай бұрын
My like turned this to 2K 😊
@bumohamed624
@bumohamed624 Жыл бұрын
it gives an error when i run correlation step complaining on data type of team, how can handle ?
@Mynamegeoph
@Mynamegeoph Жыл бұрын
I have this too, were you able to fix it?
@lalithsai5392
@lalithsai5392 Жыл бұрын
@@Mynamegeoph teams[teams.columns[2:]].corr()["medals"] use this
@noisysod7330
@noisysod7330 Жыл бұрын
@@lalithsai5392 Thanks lalithsai5392, would have been stuck without you!
@gmfPimp
@gmfPimp Жыл бұрын
I bet this is an issue with doing it locally and not using a Jupyter Notebook because I had this problem as well. The best way around this is: teams.corr(numeric_only=True)["medals"] That will only generate value against numeric fields.
@allahjoseph
@allahjoseph Жыл бұрын
code community!! @@lalithsai5392
@deepakkumaracid4529
@deepakkumaracid4529 10 ай бұрын
From where I got data?
@raja.57
@raja.57 Жыл бұрын
It will be a good pratcise to use x_test,y_test,x_train,y_train instead of predictors, target, and it wil also be a good practise to use x , y as independent and dependent variable instead of test , and so on
@sabuein
@sabuein Жыл бұрын
Thank you.
@prashanthbabu1397
@prashanthbabu1397 Жыл бұрын
Hi , I really loved your video. I was trying to follow along, but got an error and cant move forward. I would love it if you could help me fix it. i got an error for the predictions = reg.predict(test[predictors]). It kept saying ValueError: The feature names should match those that were passed during fit. Feature names unseen at fit time: - age - country - medals - team - year what do i do?
@moyinoluwaanoma
@moyinoluwaanoma Жыл бұрын
Hello, Did you get this resolved yet? Having the same issue now.
@paaviethranjayabalan6735
@paaviethranjayabalan6735 Жыл бұрын
why seaborn but not matlib>?
@bhu0091
@bhu0091 10 ай бұрын
you can use whatever you like, it's all about experimenting ;)
@sudipthapa0757
@sudipthapa0757 2 ай бұрын
can some one provide me dataset use on this video?
@wadepereira
@wadepereira 20 күн бұрын
its in the repo of github link
@PRO-to7il
@PRO-to7il 5 ай бұрын
25:45
@AhmedShamsWali
@AhmedShamsWali Ай бұрын
Should've been much more simpler for beginners. I didn't even understand why you pick a particular formula or algorithm over another, and how did you know what to import from where, so there is much more explanation for a beginner walkthrough here.
@nagrotte
@nagrotte Жыл бұрын
best
@ShortLessonsDaily
@ShortLessonsDaily 7 ай бұрын
Telugu lo chey bro
@praskatti
@praskatti Жыл бұрын
Great video. Thanks for sharing your knowledge and expertise. I ran into an issue in the "corr()" step. teams.corr()["medals"] ValueError: could not convert string to float: 'AFG'. May be I can remove this column before doing the corr() call.
@h4ytham268
@h4ytham268 11 ай бұрын
i had the same issue. what did you do to solve it?
@hongyangtan9897
@hongyangtan9897 10 ай бұрын
teams.drop(["country", "team"], axis=1).corr()["medals"] this code can work
@abhijeet800
@abhijeet800 10 ай бұрын
add this to corr(numeric_only=True)["medals"]
@MalakSalma-x8b
@MalakSalma-x8b 9 ай бұрын
@@hongyangtan9897 thank uu
@vanshikatripathi2579
@vanshikatripathi2579 9 ай бұрын
teams=pd.read_csv("teams.csv") This line giving me a huge error how to correct it or what i had wrong
@MalakSalma-x8b
@MalakSalma-x8b 9 ай бұрын
go to the document u download and take it's link and put it Instead teams.csv
@RileyMcDonald-u8w
@RileyMcDonald-u8w 10 ай бұрын
I like how you showed to use the later data to test the model, but do you have a video that shows how to use the data to predict the future Olympics?
All Machine Learning Models Explained in 5 Minutes | Types of ML Models Basics
5:01
Learn with Whiteboard
Рет қаралды 1,3 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Predict The Weather with Machine Learning: Beginner Project
42:07
Python Machine Learning Tutorial (Data Science)
49:43
Programming with Mosh
Рет қаралды 3 МЛН
Five Steps to Create a New AI Model
6:56
IBM Technology
Рет қаралды 304 М.
Machine Learning for Everybody - Full Course
3:53:53
freeCodeCamp.org
Рет қаралды 8 МЛН
I Built a Neural Network from Scratch
9:15
Green Code
Рет қаралды 468 М.
How I would learn Machine Learning (if I could start over)
7:43
AssemblyAI
Рет қаралды 764 М.
Build your first machine learning model in Python
30:57
Data Professor
Рет қаралды 391 М.
I Tried 50 Data Analyst Courses. Here Are Top 5
8:41
Stefanovic
Рет қаралды 204 М.
How I’d learn ML in 2024 (if I could start over)
7:05
Boris Meinardus
Рет қаралды 1,3 МЛН
Pandas (Theory + Practical) | Part-4
41:34
EduTECH Pune
Рет қаралды 30
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН