Build your first machine learning model in Python

  Рет қаралды 397,144

Data Professor

Data Professor

Күн бұрын

Пікірлер: 396
@brittanybutterworth7994
@brittanybutterworth7994 Жыл бұрын
🐍My heart is pounding so hard! I can't believe it was that 'simple' to make a model!! It gives me so much confidence to start learning more and add more models to the code I've made
@Samuel-ik5wp
@Samuel-ik5wp 11 ай бұрын
Stop SIMPING dude.
@jaredheeralal2095
@jaredheeralal2095 10 ай бұрын
​@@Samuel-ik5wp Stop hating
@binarysaiyan9389
@binarysaiyan9389 10 ай бұрын
Try making this model without scikit learn. Then you'll get the real taste of Machine learning
@martgjepali5266
@martgjepali5266 9 ай бұрын
@@binarysaiyan9389what’s the best practice with or without
@Blackduckkkkkoi
@Blackduckkkkkoi 5 ай бұрын
​@@binarysaiyan9389🤣🤣🤣
@Ts18762
@Ts18762 Жыл бұрын
Amazing- I really liked how casually you would think to add colors, trend line and straight away go and add a few lines to reflect in output. Shows how comfortable you’re- for a beginner like me- that was so instructive when you speak out your thoughts on the go.
@dsnewton7089
@dsnewton7089 2 жыл бұрын
After this tutorial, I can now start my ML Journey confidently. May God bless you Data Professor to continue doing this good work. Cheers
@DataProfessor
@DataProfessor 2 жыл бұрын
Thanks for the kind words :)
@nikhilrajput2652
@nikhilrajput2652 Жыл бұрын
You literally give the brief on machine learning in a very simple and easy way
@shakirabdo638
@shakirabdo638 Жыл бұрын
This is the clearest ML Tutorial I’ve ever watched ❤❤❤
@animelover5093
@animelover5093 Жыл бұрын
I didn't have any prior knowledge of Data Science or Machine Learning, but as a visual learner, I finally understand the purpose of the mathematical equation y = f(X). Initially, after watching a couple of videos and starting from a math tutorial, I was confused about the relevance of math in this field. But now I see its importance, and I am grateful for this new understanding. Thanks @DataProfessor
@HamsterWorld007
@HamsterWorld007 9 ай бұрын
One of the best beginner videos available on YT😍
@gokhan.turhan
@gokhan.turhan 22 күн бұрын
I am really excited about your channel. So this is the day first for me to start harvest from your channel. For sure i will not forget to support! 🙃😊
@trendsandmore911
@trendsandmore911 Жыл бұрын
I usually don't spend time commenting on youtube, but dude this is a great video! Easy to follow alone, and very helpful. Thank you
@DataProfessor
@DataProfessor Жыл бұрын
Glad to hear, I appreciate that!
@StaticBlaster
@StaticBlaster 2 ай бұрын
🐍Yo, this is my first ML project ever. Thank you. Very clear and concise. I need to go over this again and again and learn from this as well as other tutorials and courses.
@ololololololoj5634
@ololololololoj5634 Жыл бұрын
This video is amazing! You explain things so clearly, and the quality is excellent.
@ranahuzaifa147
@ranahuzaifa147 Жыл бұрын
This was the easiest video on the ML model. Thanks Prof.
@the-basit-ali-com
@the-basit-ali-com 10 ай бұрын
I have been spending the past 4 months trying to actually do something tangible but haven't found anything practical like this one Just took an hour and half I belive and I am done with my first mach ine learning modle This has enhanced my confience and now I am going to build more Thankf Professor
@mishanshah6827
@mishanshah6827 Жыл бұрын
🐍This was my first video on ML and you made it really easy to follow through. I did this because I wanted to feel how it is like to do this , and I like it. I will definitely follow this through and study the actual maths behind it. Thank you for keeping me motivated.
@nironelokumannage1880
@nironelokumannage1880 7 ай бұрын
This is the best machine learning tutorial that i've ever come across !❤ Simple, Clean and Informative ! Thank you sir ! 🙏
@DataProfessor
@DataProfessor 7 ай бұрын
Thanks so much for the kind words :)
@prashanthibandari8518
@prashanthibandari8518 Жыл бұрын
Excellent video. You explained everything very simple. Which i learnt 1 month in classroom you just explained in few minutes. It is quick recap for me. Thank you..
@shivamthug
@shivamthug 5 ай бұрын
Thank you so much for this video it is very helpful and specially you explain every line by line how code actually work. This is better than my college sir
@DJPapzin
@DJPapzin Жыл бұрын
🎯 Key Takeaways for quick navigation: 00:00 📋 *Introduction to Building Your First Machine Learning Model in Python* - Overview of building a machine learning model in Python using scikit-learn and Google Colab. - Naming conventions and organizing Jupyter Notebooks. 01:12 📊 *Loading and Exploring the Dataset* - Introduction to the delani dataset, which contains information about molecule solubility. - Explanation of comma-separated values (CSV) format and dataset columns. 05:11 📦 *Data Preparation: Splitting Data into Features (X) and Target (Y)* - How to separate the dataset into features (X) and the target variable (Y). - Explanation of the training set and testing set split. 09:22 ⚙️ *Building a Linear Regression Model* - Importing the Linear Regression model from scikit-learn. - Training the model on the training dataset. 13:18 🧪 *Model Evaluation: Mean Squared Error and R-squared* - Calculating Mean Squared Error (MSE) and R-squared for both training and testing sets. - Organizing and presenting the results in a Pandas DataFrame. 22:13 🌲 *Building a Random Forest Regressor Model* - Introduction to using the Random Forest Regressor model. - Organizing notebook sections and headings for clarity in the notebook structure. 23:47 📊 *Building Regression Models* - Explains the distinction between regression and classification models based on the nature of the target variable. - Demonstrates how to create a random forest regressor with specified parameters. - Covers the training process of the regression model. 25:01 📈 *Model Performance Evaluation* - Discusses using mean squared error and R2 score for evaluating model performance. - Shows how to apply these metrics to the random forest regression model. - Emphasizes being cautious about typos in code. 26:08 🧷 *Combining Model Results* - Explains the process of combining the results of linear regression and random forest regression models. - Demonstrates how to concatenate the results into a single DataFrame. - Provides tips on reindexing and organizing the combined data. 28:03 📊 *Data Visualization of Prediction Results* - Introduces data visualization using matplotlib for comparing predicted and actual values. - Guides in creating a scatter plot with labeled axes. - Adds a trendline to the plot using numpy's polyfit function. 29:56 🎉 *Conclusion and Further Exploration* - Summarizes the process of building a machine learning model in Python using scikit-learn. - Encourages viewers to explore different models, tweak learning parameters, and refer to scikit-learn's documentation. - Requests viewers to share their model-building experiences in the comments. Made with HARPA AI
@Hayman-
@Hayman- Жыл бұрын
“ Underrated comment “ -every bot comment ever (But still a good comment with no likes)
@tikkki25
@tikkki25 7 ай бұрын
You're a very good teacher. Taught a complex topic so simply
@DataProfessor
@DataProfessor 7 ай бұрын
Thanks for the kind words 😊
@MrIbadanBoy
@MrIbadanBoy 2 жыл бұрын
Awesome as always.. I'm applying this to my QSAR dataset in a bit.. Thanks for churning out great n useful content as always.. You d bestest Data Professor.
@DataProfessor
@DataProfessor 2 жыл бұрын
Glad it was helpful! And thanks for the kind words :)
@mhapich
@mhapich 2 жыл бұрын
🐍 This was SO helpful. I feel like I had just been going through the motions in that process before, but you explained WHY each step is done. And I will definitely be using headings from now on to create that table of contents. Thanks, Data Professor, for another great video!
@DataProfessor
@DataProfessor 2 жыл бұрын
Glad it was helpful! Yes, using headings and sub-headings helps my future self to skim through the code fairly quickly :)
@HerozTech
@HerozTech Жыл бұрын
this is literally the first machine learning that i have built looking to take it further Thanks for the tutorial 🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍
@andrewdorsey7411
@andrewdorsey7411 Жыл бұрын
🐍 Thanks for this. I appreciate you not just going straight into the core material, but talking about the organization with the headers.
@naboulsikhalid7763
@naboulsikhalid7763 Жыл бұрын
before this video, Machine learning was sorcery and scary. Not anymore. Thank you for your neat and casual explanations that make me love the science and the math behind those functions. I am really looking forward to giving it a shot and learning more. thanks a lot. like and sub-earned
@DataProfessor
@DataProfessor Жыл бұрын
Glad to hear that this video was helpful!
@AzureCz
@AzureCz 2 жыл бұрын
🐍 great video, simple and direct approach, simple models, simple problem. It'd be nice to have more of those simple and direct videos with simple classification and clustering problems, just to get a grasp on them :D
@DataProfessor
@DataProfessor 2 жыл бұрын
Great suggestion! More in the pipeline
@AzureCz
@AzureCz 2 жыл бұрын
@@DataProfessor The "Titles" organization inside the notebook really helped to make it more fluid!
@aashiqumr
@aashiqumr Жыл бұрын
The best ML tutorial i just watched. Hat's off for your work sir. I really enjoyed and explanations were really great. Thanks again. You earned a subscriber here. keep up the great work sir.
@DataProfessor
@DataProfessor Жыл бұрын
You're very welcome!
@RiyazBashaRK
@RiyazBashaRK Жыл бұрын
Hi ! Can you please mention in one line what exactly we found at the end I see it shows linear regression but what exactly does it depicts?
@ahsandhindsa4550
@ahsandhindsa4550 5 ай бұрын
Thank you so much bro this is the clearest explanation I have seen 🐍.
@raghuls8033
@raghuls8033 11 ай бұрын
Anyway u have a dataset for clap sound like single, double and triple that makes a function play/pause, previous and next in the music player pls help me with this anyone
@teresanicholls8531
@teresanicholls8531 Жыл бұрын
🐍 Your explanation was clear, concise, and appreciated! You are an amazing teacher who hits all the important points without adding any confusion. Thank you for your time in doing this!
@DataProfessor
@DataProfessor Жыл бұрын
Wow, thank you for the kind words! Glad to hear that the video is helpful!
@Beauttech-b6p
@Beauttech-b6p 3 ай бұрын
Thank you for this . This video is helping me build my first model
@sumit5210
@sumit5210 9 ай бұрын
The only video that I understood about ML. Thank you!
@aroraqueen1555
@aroraqueen1555 27 күн бұрын
It's super beginners friendly😂 thank you!!
@chaz8572
@chaz8572 Жыл бұрын
Python really is a whole different beast.. Just to accomplish the task we used numpy, pandas, sklearn.model_selection, sklearn.linear_model, sklearn.metrics, sklearn.ensemble, and matplotlib. That's 7 libraries.. So overwhelming... Thanks for the guide. I did it locally within VSCode, so had to keep tweaking and installing libraries along the way, but it worked out well. The ML journey begins. Thanks for the training wheels!
@_Wonder__
@_Wonder__ Жыл бұрын
This was awesome, thanks to your knowledge I feel I can have fun with experimenting with different algorithms and its parameters.🐍
@ragus1416
@ragus1416 Жыл бұрын
You made the process very simple for us! Great Video! Keep up the good Work!
@mattlitchfield3776
@mattlitchfield3776 2 жыл бұрын
🐍 awesome video. This one was so much easier to follow along compared to other tutorials I have watch.
@DataProfessor
@DataProfessor 2 жыл бұрын
Glad it was helpful!
@MohamedYasser-ec8ly
@MohamedYasser-ec8ly Ай бұрын
Thank You , May God bless you to continue doing this Great work.
@thanirmalai
@thanirmalai Жыл бұрын
🐍Amazing intro to ml. It really felt easy to build my first ml model
@akamasamueldodzi5719
@akamasamueldodzi5719 4 ай бұрын
very good video. cleared most of my fears about building ML models
@christopherramirez1843
@christopherramirez1843 10 ай бұрын
Excellent video to help understand the basic behind training new models. Just one suggestion, I missed a little more explanation on how the different parameters of the training algorithm would affect the end result.
@horanj.1022
@horanj.1022 Жыл бұрын
🐍 Great video Data Professor! I really liked this tutorial because you didn't miss explaining terms you used without making any assumptions
@DataProfessor
@DataProfessor Жыл бұрын
Thanks! 😃
@muggly6059
@muggly6059 6 ай бұрын
Wow! Thank you for a simple, clear explanation 👏👏
@Skywalker954
@Skywalker954 7 ай бұрын
Thanks a lot! Great tutorial, I love how you explain every step of it so it is easy to understand what you are doing.
@juancarloscalix7589
@juancarloscalix7589 11 күн бұрын
Thank for sharing , learned all concept about machine learning
@bassmonkey70
@bassmonkey70 Жыл бұрын
🐍Amazing depth covered in a short time-frame! Thank-you for compiling this introductory ML tutorial!
@zuodei4408
@zuodei4408 10 ай бұрын
🐍Thanks for this video. It will help me move forward in my final project in the university. Keep up the Good work. God bless you🙏.
@JonOxtoby
@JonOxtoby 9 ай бұрын
🐍THanks for such an excellent introduction to running ML models in python - so clearly explained and super helpful tips on working within notebooks!
@vinnythapz1860
@vinnythapz1860 8 ай бұрын
🐍wow!!thanks...sticking around you definitely will get me throught my internship with flying colours!
@sharonrosekhokhololo5304
@sharonrosekhokhololo5304 10 ай бұрын
The explanations are so easy to understand.
@joelr9924
@joelr9924 7 ай бұрын
Thank you so much for this tutorial. Great to follow and to get an idea of how to actually build a model
@allankariuki4082
@allankariuki4082 4 ай бұрын
🐍 Thank you so much. I can now dive into ML with confidence.
@FRAMEDSKATEKREW69
@FRAMEDSKATEKREW69 Жыл бұрын
🐍 Finally a simple video, although I had a book for all this I think the pacing was too slow to start me off. Now I am more interested in know why and how some of this code work and for what reason. This is my process on being able to really understand and process information for coding lol Thanks for the video!
@zegiyt4069
@zegiyt4069 2 жыл бұрын
TY you saved me for training our model for my Final Year Project
@Idontknowcode512
@Idontknowcode512 Жыл бұрын
Best video I have find on youtube. Have you created playlists related to the AI, ML, NN 🤔
@forestsunrise26
@forestsunrise26 2 жыл бұрын
Thank you so so much for this tutorial, your videos deserve much more views! Could you please also do a video explaining how to do k-cross validation as well as the methods to measure and compare the accuracy of ML models (confusion matrix, F1 score ect.)? Thank you so much for your videos I learn much more from you than my other profs at the university!
@DataProfessor
@DataProfessor 2 жыл бұрын
Sure thing! Thanks for the suggestion. Also glad the videos are helpful :)
@uchiha6553
@uchiha6553 Ай бұрын
thanx sir I loved to learn this I'll go create my own model now
@ranjandeep
@ranjandeep 2 жыл бұрын
This is amazing Data Professor. Hope to see more of this stuff.
@armandoabreu6593
@armandoabreu6593 5 ай бұрын
Great video straight foward and clear explanations.
@ShrikrishnagopalSharma
@ShrikrishnagopalSharma Жыл бұрын
This was really nice content i have been struggling from where to start for my project and this video has just given me the way thanks @Data professor😇😇😇
@DataProfessor
@DataProfessor Жыл бұрын
Glad it was helpful!
@chinonsomartins7308
@chinonsomartins7308 2 жыл бұрын
I really love this video very explicit and well thought !!❣❣
@altangerelbayarsaikhan6386
@altangerelbayarsaikhan6386 9 ай бұрын
🐍 thank you for the great tutorial of the building machine learning model.
@jeffreyboadu4452
@jeffreyboadu4452 Жыл бұрын
🐍Wow. This is my first time witnessing how models can be created. Great video as well.
@mattisbeaugendre4085
@mattisbeaugendre4085 5 ай бұрын
Very cool video, much thanks for this. In addition to the video, I would like to know as a final part : how can we apply this model in a real life case ? Where do I put my python code ? How to integrate it ?
@AdamC3434
@AdamC3434 Жыл бұрын
🐍 this video got me through a few projects. Thank you!
@utkarshghildyal6876
@utkarshghildyal6876 Жыл бұрын
🐍 Great way of explaining machine learning! Made it really easy to understand!
@pencillab6476
@pencillab6476 2 жыл бұрын
Very well explained. Now i know where to start and what to do....
@andy-moggo
@andy-moggo 3 ай бұрын
Amazing explanation, thanks
@ikechukwuewuzie3836
@ikechukwuewuzie3836 2 жыл бұрын
Great Tutoring from the Data Professor.
@DataProfessor
@DataProfessor 2 жыл бұрын
Glad you think so!
@sehanratnaweera5254
@sehanratnaweera5254 19 күн бұрын
🐍... thankyou so much sir for explaining everything.. my next goal is to create a classification model
@ChanceTEK
@ChanceTEK Жыл бұрын
Brilliant! Extremely helpful... Thank you!
@negusuworku2375
@negusuworku2375 Жыл бұрын
WOW....very interesting and very helpful....Thank you
@negusuworku1871
@negusuworku1871 Жыл бұрын
This is super. Thank you so much. Keep it up the good work...
@rohangondor6250
@rohangondor6250 Жыл бұрын
Liking the video so far, but at 15:20, I’m getting a “name ‘X_train’ is not defined” error? Also it’s saying “name ‘X’ not defined” in the data splitting section
@rohangondor6250
@rohangondor6250 Жыл бұрын
Apparently I had an extra empty code block right above that caused this issue -.-
@ShiftKoncepts
@ShiftKoncepts 11 ай бұрын
already so much better than datascience 365 tutorials!
@nithya_thimmaraju
@nithya_thimmaraju 7 ай бұрын
I think you should also define why random forest is used, what is the difference between linear regression and random forest. Why max_deoth is set to 2, and all the other details because these elements are primarily important for anyone to understand what is actually being done.
@TrendSurges
@TrendSurges Ай бұрын
hi, i wanted to build a machine learning related project where i take readings from a pressure sensor and gps. (measure the height coming from both) write these measured height values and put them in x, while the y is known (using a scale to measure the actual height of my drone) what kind of ML algo should i use. is this approach even feasible to predict my drones height?
@juliamaria1790
@juliamaria1790 2 ай бұрын
Thanks professor 🤝
@SuperPrasathkumar
@SuperPrasathkumar Жыл бұрын
Great start👌
@CIVILSolved
@CIVILSolved 10 ай бұрын
What is the difference between the model (linear regression) developed by Google Colab and Microsoft Excel? Here you quoted that the model developed is using a machine learning model (using Colab), can we say the model developed using Mircosoft Excel is also a Machine Learning model?
@1hpxalphaop741
@1hpxalphaop741 7 ай бұрын
Actually a great video sir, now we have trained the model right?, now if i want to use this model so i just need to copy paste the name of this jupyter file right??
@ayushbenny5524
@ayushbenny5524 2 ай бұрын
Can you suggest me what are the pre-requisites that i should know before jumping into this?
@lilstringcheese
@lilstringcheese Жыл бұрын
How do I see individual logS predictions based on each row of the dataset?
@jamontfleming9194
@jamontfleming9194 10 ай бұрын
🐍Very helpful video as I am starting my journey into training AI. Your instructions were very clear and easy to follow. Thanks for sharing!
@ManteshRedekar
@ManteshRedekar 7 ай бұрын
thank you very much ,Now I gain some confidence 🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍
@deepakpanchaal
@deepakpanchaal 3 ай бұрын
Very nicely explained. But you should have explained the outputs more, like what does that chart mean shown at the end?
@metanulski
@metanulski Жыл бұрын
The part I did not unterstand was the evaluation. For example. In the end we got a Training MSE fo Liniar regression of 1.007. Is the good or bad? Is the 1.028 form Random forest a better or worst result.
@matijaxzivkovic8843
@matijaxzivkovic8843 2 жыл бұрын
Great video! I enjoyed a lot and learned a lot. Many thanks for that.
@DivinityinLove
@DivinityinLove 11 ай бұрын
I didn't understand why xlabel was Experimental logS, are those not the actual sales vs the predicted sales? I used my own data and didn't get a scatter plot like yours, I only have 100 rows in my dataset and the scatter plot looks very odd. Not sure what the issue was.
@ctvisconti
@ctvisconti Жыл бұрын
I want to learn how to create a simple but useful neural network in my home lab . Do you have any video or ideas to share?
@enrac
@enrac 8 ай бұрын
So how would I got about doing this but for strings? Like if I had something like: DOG - CAT - MONKEY And I want the result to be those tokens separated (they’re not guaranteed to be separated by a dash). How would I do that?
@mousumimimi8278
@mousumimimi8278 Жыл бұрын
can you please make a video if the output of LR become the input of SVM, how can I do this in google colab
@ShiftKoncepts
@ShiftKoncepts 11 ай бұрын
Does the high MSE indicate that the model is not really good? I heard if it was closer to 0, that mean the model is near perfect.
@afrodailytv4335
@afrodailytv4335 4 ай бұрын
So how do i get the sample Data you used for this session?
@shwetaraturi3282
@shwetaraturi3282 Ай бұрын
We do prediction on test data . Is it that we do it on training data also
@thandothemisunderstood
@thandothemisunderstood 10 ай бұрын
So, if we have experimental data already trained and tested, does this mean we can predict the solubility of the new molecule yet to be synthesized? Thanks for simplifying it.
@FrocketGaming
@FrocketGaming Жыл бұрын
How would you go about determining how accurate your model is against the test dataset?
@RabeccaMalika
@RabeccaMalika 8 ай бұрын
Thanks for this video. I want to develop and train a Machine learning model that will be used to develop a robotic system in maize cultivation.
@prajyotgurav
@prajyotgurav 28 күн бұрын
🐍 You've made it so easy to learn!!
@DataProfessor
@DataProfessor 27 күн бұрын
Thanks! I'm glad you found it helpful.
@yao_barna
@yao_barna 2 жыл бұрын
Hi! Great video. A quick question... when do we use linear regression as in statistics and when do we use it as a ML algorithm? Both try to find coefficients, both try to minimize the error (however it is defined) but I am still confused on what is the difference between the classical linear regression I learnt in basic algebra course and the ML procedure. Thanks!
Training Your Own AI Model Is Not As Hard As You (Probably) Think
10:24
Steve (Builder.io)
Рет қаралды 643 М.
How I'd learn ML in 2025 (if I could start over)
16:24
Boris Meinardus
Рет қаралды 80 М.
It works #beatbox #tiktok
00:34
BeatboxJCOP
Рет қаралды 41 МЛН
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
Run your own AI (but private)
22:13
NetworkChuck
Рет қаралды 1,8 МЛН
Predict The Stock Market With Machine Learning And Python
35:55
Dataquest
Рет қаралды 736 М.
All Machine Learning algorithms explained in 17 min
16:30
Infinite Codes
Рет қаралды 486 М.
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Internet Made Coder
Рет қаралды 1,7 МЛН
I Built a Neural Network from Scratch
9:15
Green Code
Рет қаралды 490 М.
How I Would Learn Python FAST (if I could start over)
12:19
Thu Vu data analytics
Рет қаралды 672 М.
ML Was Hard Until I Learned These 5 Secrets!
13:11
Boris Meinardus
Рет қаралды 352 М.
Python Machine Learning Tutorial (Data Science)
49:43
Programming with Mosh
Рет қаралды 3 МЛН
Как выжить?
0:33
Илюха Хэлп
Рет қаралды 3,4 МЛН
This thing is CRAZY 🤯 #shorts
0:20
House of Highlights
Рет қаралды 48 МЛН
ТЕЛЕФОН МЕНЯЕТ ЦВЕТ😅 #upx
0:34
RanF
Рет қаралды 639 М.
The Million view clip on China's Tiktok P2428 #shorts #gochannel
0:15
Go Channel TV
Рет қаралды 29 МЛН