Logistic Regression in Python | Logistic Regression Example | Machine Learning Algorithms | Edureka

  Рет қаралды 405,834

edureka!

edureka!

Күн бұрын

🔥 Python Data Science Training (Use Code "𝐘𝐎𝐔𝐓𝐔𝐁𝐄𝟐𝟎"): www.edureka.co...
This Edureka Video on Logistic Regression in Python will give you basic understanding of Logistic Regression Machine Learning Algorithm with examples. In this video, you will also get to see demo on Logistic Regression using Python. Below are the topics covered in this tutorial:
1:10 What is Regression?
3:22 What is Logistic Regression: What & Why?
8:43 Linear Vs Logistic Regression
10:13 Logistic Regression Use Cases
12:14 Logistic Regression Example Demo in Python
Subscribe to our channel to get video updates. Hit the subscribe button above.
Machine Learning Tutorial Playlist: goo.gl/UxjTxm
PG in Artificial Intelligence and Machine Learning with NIT Warangal : www.edureka.co...
#Edureka #EdurekaMachineLearning #logisticregression #logisticregressionpython #machinelearningalgorithms
- - - - - - - - - - - - - - - - -
About the Course
Edureka’s Course on Python helps you gain expertise in various machine learning algorithms such as regression, clustering, decision trees, random forest, Naïve Bayes and Q-Learning. Throughout the Python Certification Course, you’ll be solving real life case studies on Media, Healthcare, Social Media, Aviation, HR.
During our Python Certification Training, our instructors will help you to:
1. Master the basic and advanced concepts of Python
2. Gain insight into the 'Roles' played by a Machine Learning Engineer
3. Automate data analysis using python
4. Gain expertise in machine learning using Python and build a Real Life Machine Learning application
5. Understand the supervised and unsupervised learning and concepts of Scikit-Learn
6. Explain Time Series and it’s related concepts
7. Perform Text Mining and Sentimental analysis
8. Gain expertise to handle business in future, living the present
9. Work on a Real Life Project on Big Data Analytics using Python and gain Hands on Project Experience
- - - - - - - - - - - - - - - - - - -
Why learn Python?
Programmers love Python because of how fast and easy it is to use. Python cuts development time in half with its simple to read syntax and easy compilation feature. Debugging your programs is a breeze in Python with its built in debugger. Using Python makes Programmers more productive and their programs ultimately better. Python continues to be a favorite option for data scientists who use it for building and using Machine learning applications and other scientific computations.
Python runs on Windows, Linux/Unix, Mac OS and has been ported to Java and .NET virtual machines. Python is free to use, even for the commercial products, because of its OSI-approved open source license.
Python has evolved as the most preferred Language for Data Analytics and the increasing search trends on python also indicates that Python is the next "Big Thing" and a must for Professionals in the Data Analytics domain.
For more information, Please write back to us at sales@edureka.co or call us at IND: 9606058406 / US: 18338555775 (toll free).
Instagram: / edureka_learning
Facebook: / edurekain
Twitter: / edurekain
LinkedIn: / edureka

Пікірлер: 348
@edurekaIN
@edurekaIN 6 жыл бұрын
Got a question on the topic? Please share it in the comment section below and our experts will answer it for you. For Edureka Python Machine Learning Course curriculum, Visit our Website: bit.ly/2OpzQWw
@srikanthkuchi7743
@srikanthkuchi7743 6 жыл бұрын
Thank you so much
@kamakhyasingh9994
@kamakhyasingh9994 4 жыл бұрын
It's an awesome explanation, Thank you very much, Please share the source code & datasets to my mail id : rkamakhya@gmail.com
@sanatansuryavikram
@sanatansuryavikram 4 жыл бұрын
Shrey 1 second ago hi what if the labels , dependent variable is 7 and 8 do you have to change it to 0- and 1 or do i keep it as it is to perform logistic regression pleas reply asap.
@edurekaIN
@edurekaIN 3 жыл бұрын
Hi Shrey, it has to be dichotomous. So if there are only two categories, you can transform the labels. Hope that solves your query.
@BriteRoy
@BriteRoy 5 жыл бұрын
How do you speak so flawlessly without fumbling or pausing even for once. Hats off.
@ShubhamKumar-fy1fl
@ShubhamKumar-fy1fl 4 жыл бұрын
In the world full of greed no one is providing knowledge for free. Edureka you are doing great job 👍
@himanshushekharsingh5270
@himanshushekharsingh5270 4 жыл бұрын
Just to clear my concept on logistic regression i searched L R and saw this video. It is perfectly explained by the instructor. Each and every part is well explained. Glad to see this video. A big thumbs up👍 and Thanks.
@poornaacharya6910
@poornaacharya6910 5 жыл бұрын
You guys are awesome! Explained the concept very clearly and in an understandable way. Thanks a lot!!!
@maheshkandrekula424
@maheshkandrekula424 2 жыл бұрын
What is the real practical application of this titanic data set ?
@sriharitha9985
@sriharitha9985 2 жыл бұрын
I really felt very happy with your explanation, very useful for begginers
@edurekaIN
@edurekaIN 2 жыл бұрын
Glad it was helpful! Keep learning with us .
@astrovert.ed2321
@astrovert.ed2321 4 жыл бұрын
This one hour video has given immense clarity and confidence. Thanks team!
@sayanbanerjee362
@sayanbanerjee362 5 жыл бұрын
"Over here" great job! 👍🏻
@sandeeppanchal8615
@sandeeppanchal8615 5 жыл бұрын
Hi, presentation is really good. Anybody can understand it easily. Thanks for such wonderful lecture. Input: Our prediction can go to ~ 82% if we can fill the null values in 'Age' column with average values and can be done by 2 methods. 1) Fill the null values with the value which is the average of all age. (df['Age].mean(). Where df variable name for our dataframe) 2) Fill the null values by taking the average values with respect to column 'Pclass'. Example: If average age of passengers travelling in 1st class is taken and fill the null values with respect to 1st class. Same is done for 2nd and 3rd class. Average age with respect to 'Pclass' can be assumed from the boxplot of seaborn with 'Age' as x and 'Pclass' as y. Method 2 is better over method 1. Look at the code to fill the null values in 'Age' with respect to 'Pclass'. (train is the variable name of dataframe) ********************************************************************************* def impute_age(cols): Age = cols[0] Pclass = cols[1] if pd.isnull(Age): if Pclass == 1: return 37 elif Pclass == 2: return 29 else: return 24 else: return Age train['Age'] = train[['Age','Pclass']].apply(impute_age,axis=1) ******************************************************************************* My prediction is as follows: Accuracy: 82.02247191011236 ******************************************************************************* Classification Report precision recall f1-score support 0 0.81 0.93 0.86 163 1 0.85 0.65 0.74 104 micro avg 0.82 0.82 0.82 267 macro avg 0.83 0.79 0.80 267 weighted avg 0.82 0.82 0.81 267 ******************************************************************************* Confusion Matrix: [[151 12] [ 36 68]] ******************************************************************************* Predicted 0 1 Actual 0 151 12 1 36 68
@elebs_d
@elebs_d 5 жыл бұрын
God bless you, Thank you so much for this
@naynadhone5908
@naynadhone5908 5 жыл бұрын
Thank you mam.. got all the concepts...
@shivaaryaprakash
@shivaaryaprakash 5 жыл бұрын
You are very very efficient speaker and have delivered great analysis.. thank you
@dikshaarora7616
@dikshaarora7616 4 жыл бұрын
Amazingly defined 👍 Thankyou
@PushK-yu5ph
@PushK-yu5ph 4 жыл бұрын
Great video and a very thorough and clear explanation . Helpful session for the day . Thanks a lot !!!
@chinnaraobiyyala5505
@chinnaraobiyyala5505 2 жыл бұрын
GREAT EXPLANATION MAM
@vikashchoubey4570
@vikashchoubey4570 4 жыл бұрын
very much useful it is. thank you
@iqrabashir904
@iqrabashir904 Жыл бұрын
Please make tutorials on path planing in robotics and practical implementation
@nehareddy4619
@nehareddy4619 2 жыл бұрын
Simply wow. Excellent explanation by you mam. We need professors like u.
@edurekaIN
@edurekaIN 2 жыл бұрын
Hi : ) We really are glad to hear this ! Truly feels good that our team is delivering and making your learning easier :) Keep learning with us .Stay connected with our channel and team :) . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@shubhamsahai2492
@shubhamsahai2492 3 жыл бұрын
Great session! Thank you :)
@hamzahilori6579
@hamzahilori6579 2 жыл бұрын
My goodness! How did you get this good at teaching. 👏👏👏
@edurekaIN
@edurekaIN 2 жыл бұрын
You're welcome 😊 Stay connected with our channel and team :) . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@aadika45
@aadika45 2 жыл бұрын
Thanks for your video. It makes life easier.
@edurekaIN
@edurekaIN 2 жыл бұрын
Glad it helped!
@ArunKumar-mi2iq
@ArunKumar-mi2iq 2 жыл бұрын
After many videos , I got a nice explanation. Kudos to you mam ❤️
@edurekaIN
@edurekaIN 2 жыл бұрын
We are super happy that Edureka is helping you learn better. Your support means a lot to us and it motivated us to create even better learning content and courses experience for you . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@shavkatyuldashov235
@shavkatyuldashov235 4 жыл бұрын
It's so understandable lesson! Thank you.
@khalidhasan1793
@khalidhasan1793 Жыл бұрын
It's a great tutorial. Take a bow..
@edurekaIN
@edurekaIN Жыл бұрын
Thank you 😊 Glad it helped !!
@smnazmussadat9424
@smnazmussadat9424 4 жыл бұрын
Thanks, really helpful
@bilalbaloch9366
@bilalbaloch9366 6 жыл бұрын
well explained , My concepts about logistic regression have cleared . Thank you
@edurekaIN
@edurekaIN 6 жыл бұрын
Hey Bilal, we are glad you feel this way. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
@gautamar1455
@gautamar1455 4 жыл бұрын
wow very rich in content explained well
@surendra2227
@surendra2227 3 жыл бұрын
Great explanation 👌 👍 👏 😀
@Mithilesh165
@Mithilesh165 5 жыл бұрын
Thanks Edureka....your videos are of high quality ...
@KamleshSharma-si2rq
@KamleshSharma-si2rq 5 жыл бұрын
One of the best tutorial ever,Mam can you pls share the dataset and source code...Thank you.
@edurekaIN
@edurekaIN 5 жыл бұрын
Hey Kamlesh, we are glad you loved the video. Do mention your email ID over here and we will send the files to you. Cheers!
@hariprakashroyal569
@hariprakashroyal569 3 жыл бұрын
Well Explained mam thnx
@dikshamakkar2850
@dikshamakkar2850 4 жыл бұрын
Explanation is tooo good.... Thnkz alot😊
@anuradhabalasubramanian9845
@anuradhabalasubramanian9845 2 жыл бұрын
Fantabulous Presentation Mam!
@edurekaIN
@edurekaIN 2 жыл бұрын
Good To know our vedios are helping you learn better :) Stay connected with us and keep learning ! Do subscribe the channel for more updates : )
@viseshsolution74
@viseshsolution74 3 жыл бұрын
very good explanation
@akshunair3367
@akshunair3367 4 жыл бұрын
Loved the way the lesson is taught.
@rajamoorthy1969
@rajamoorthy1969 Жыл бұрын
Outstanding explanation. I am pursuing AI Silver from Pixel Tests but your way of explanation is by far the best one. Thanks for sharing your knowledge. Sharing is caring indeed.
@edurekaIN
@edurekaIN Жыл бұрын
We are very glad to hear that your a learning well with our contents 😊 continue to learn with us and don't forget to subscribe our channel so that you don't miss any updates !
@HJ-uy6ez
@HJ-uy6ez 3 жыл бұрын
You did an excellent job, thank you very much!
@edurekaIN
@edurekaIN 3 жыл бұрын
You're welcome 😊 Stay connected with our channel and team :) . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@jayanthck1782
@jayanthck1782 3 жыл бұрын
Best explanation on logistic regression thank u so much..
@shaikyasmin2559
@shaikyasmin2559 5 жыл бұрын
Thank you mam ,your video very clear ,good help us
@edurekaIN
@edurekaIN 5 жыл бұрын
Thanks for the compliment Yasmin, we are glad you loved the video. Do subscribe to the channel and hit the bell icon to never miss an update from us in the future. Cheers!
@shaikyasmin2559
@shaikyasmin2559 5 жыл бұрын
@@edurekaIN OK mam
@amishachourpagar9925
@amishachourpagar9925 3 жыл бұрын
Thank you mam you explained very well love it😀❤️❤️❤️
@edurekaIN
@edurekaIN 3 жыл бұрын
Hi : ) We really are glad to hear this ! Truly feels good that our team is delivering and making your learning easier :) Keep learning with us .Stay connected with our channel and team :) . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@samarthgarg4639
@samarthgarg4639 5 жыл бұрын
Just a suggestion, if you also share the data being analysed in the videos, it would be a big help to the ones who are watching
@edurekaIN
@edurekaIN 5 жыл бұрын
Hi Samarth, thanks for the feedback. We will definitely look into your suggestion. Please mention your email id (it will not be published). We will forward the data to your email address.
@80amnesia
@80amnesia 4 жыл бұрын
very useful real case example
@abdellatifthabet568
@abdellatifthabet568 5 жыл бұрын
thank you ma'am.. keep it up
@sandeepkumarghosh9531
@sandeepkumarghosh9531 4 жыл бұрын
Great explanation within a short span of time.This lecture has been very helpful.Thank you mam!
@flyeagle320
@flyeagle320 2 жыл бұрын
Wonderful tutorial
@edurekaIN
@edurekaIN 2 жыл бұрын
Thank you so much 😊
@deeptikhanvilkar5983
@deeptikhanvilkar5983 5 жыл бұрын
Very good explanation for each line of code. Loved it
@nitinmalhotra423
@nitinmalhotra423 4 жыл бұрын
Thanks Edureka got all the concepts cleared.
@rakhipatil2372
@rakhipatil2372 5 жыл бұрын
Nice video..Please provide the data set
@puthayallaiah5586
@puthayallaiah5586 5 жыл бұрын
Thank you mam for vaulable class on logistics regrations and it gives a clear underatanding to me for alogirthms development in ML
@banothanilkumar1140
@banothanilkumar1140 5 жыл бұрын
Thanks you madam it very clear cut explanation
@vivianogwuihe5201
@vivianogwuihe5201 2 жыл бұрын
The real definition of a Queen. Thank you for this.
@edurekaIN
@edurekaIN 2 жыл бұрын
Hi : ) We really are glad to hear this ! Truly feels good that our team is delivering and making your learning easier :) Keep learning with us .Stay connected with our channel and team :) . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@ashutoshgupta8059
@ashutoshgupta8059 2 жыл бұрын
Beautiful
@sureshkumarbevara8069
@sureshkumarbevara8069 5 жыл бұрын
Thank you, This is very helpful for my studies.
@edurekaIN
@edurekaIN 5 жыл бұрын
Thanks Suresh!
@DuyKDao
@DuyKDao 5 жыл бұрын
Thx u. Very clear instruction
@sahilgoura691
@sahilgoura691 5 жыл бұрын
The video is very nice. The way our concepts are getting cleared. Please give us the link to download the notebook which you created as titanic.
@viveksthanam
@viveksthanam 6 жыл бұрын
Hello Can you also make a video on how to plot these predicted values.
@edurekaIN
@edurekaIN 6 жыл бұрын
Hey Vivek, we will definitely look into your suggestions. We update our channel regularly, stay tuned and never miss out on our updates. Cheers :)
@nayanbire1102
@nayanbire1102 2 жыл бұрын
Thank you so much! Very helpful!
@edurekaIN
@edurekaIN 2 жыл бұрын
Good To know our videos are helping you learn better :) Stay connected with us and keep learning ! Do subscribe the channel for more updates : )
@yash-vh9tk
@yash-vh9tk 4 жыл бұрын
Wow. Great explanation
@siddharthkshirsagar2545
@siddharthkshirsagar2545 5 жыл бұрын
Best explanation on regression so far thank u so much
@adityapawar7279
@adityapawar7279 5 жыл бұрын
A very helpful video.Thank you for the brief tutorial on using Jupyter notebook.
@edurekaIN
@edurekaIN 5 жыл бұрын
Hi Aditya, thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers!
@sirishareddy1390
@sirishareddy1390 5 жыл бұрын
how to get dataset?
@krutarthkhatri5243
@krutarthkhatri5243 4 жыл бұрын
best explanation of logistic regression
@simransimran6766
@simransimran6766 4 жыл бұрын
Best explanation ever
@swarupdas9103
@swarupdas9103 4 жыл бұрын
Great explanation,pls share me the datasets
@darshanabhole
@darshanabhole 4 жыл бұрын
helpfull..thnku
@swarnaharigmailcom
@swarnaharigmailcom 4 жыл бұрын
very clearly explained.Hats off Mam
@abhisekdey9430
@abhisekdey9430 4 жыл бұрын
Thank you so much ma'am. Really its a great tutorial.
@VIVEKYADAV-gc1ti
@VIVEKYADAV-gc1ti 3 жыл бұрын
Mam i got 💯% accuracy at Titanic Dataset 💪💪💪💪✊✊👍👍👍
@krishnaaggarwal9228
@krishnaaggarwal9228 5 жыл бұрын
very well explained ,thank you for such good explanation...
@sriharitha9985
@sriharitha9985 2 жыл бұрын
Hi team, wanted to share a good feedback with you, really missed your university, I was training for ML In some reputed university where I cannot mention the name, however I missed you guys, but following you explanation in KZbin instead of unversity recordings, thank you so much for the help .
@edurekaIN
@edurekaIN 2 жыл бұрын
We are super happy that Edureka is helping you learn better. Your support means a lot to us and it motivated us to create even better learning content and courses experience for you . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@Raos-Academy
@Raos-Academy 6 жыл бұрын
Thank you soo much very nice class
@sureshkumaratkuri1053
@sureshkumaratkuri1053 5 жыл бұрын
Excellent explanation. The way you prepare PPTs to explain the concepts is matchless in the industry. keep it up.
@srivanimrecw6584
@srivanimrecw6584 3 жыл бұрын
excellent
@geetikabansal2196
@geetikabansal2196 4 жыл бұрын
Thankyou Soooooo Much Ma'am!!!!!!
@wahabkhan9319
@wahabkhan9319 3 жыл бұрын
great video
@Modern_revolution
@Modern_revolution 5 жыл бұрын
Thanks
@Yash-cu4gq
@Yash-cu4gq 5 жыл бұрын
I really like ur explanation mam!! I have got answers for so many doubts with ur explanation. Can u please tell me where to find this excellent notes?? Want more videos on ML😊
@edurekaIN
@edurekaIN 5 жыл бұрын
Hi Yashwanth, Thanks for the compliment. We are so glad to hear that you liked our videos. You can always refer to the Machine Learning Playlist of Edureka for more such helpful videos. Here's a link to the playlist kzbin.info/www/bejne/hpuTn5iPitVsisU
@pallaviaparna5536
@pallaviaparna5536 Жыл бұрын
Wonderful explanation madam
@edurekaIN
@edurekaIN Жыл бұрын
Thank You 😊 Glad it was helpful!! Keep learning with us..
@shreyastc8975
@shreyastc8975 4 жыл бұрын
Can you please provide data sets as well
@shreyastc8975
@shreyastc8975 4 жыл бұрын
Wonderful explaination. 👏👏
@divyadarbe
@divyadarbe 5 жыл бұрын
Thank you Madam! very good explanation
@abhayvashokan5580
@abhayvashokan5580 5 жыл бұрын
Awesome! Really liked it. Live presentations are never this good.
@matitiudeforever8155
@matitiudeforever8155 6 жыл бұрын
perfect !! freaking awesome !!...subscribed
@edurekaIN
@edurekaIN 6 жыл бұрын
Hey Matitiude, thanks for subscribing! We are glad you loved the video. Do take a look at our other videos too and stay tuned for future updates. Cheers!
@harishsahu8543
@harishsahu8543 2 жыл бұрын
Wonderful explanation mam. One polite request from my side mam, please could we get the dataset so we can also work on this data set
@edurekaIN
@edurekaIN 2 жыл бұрын
We are happy that Edureka is helping you learn better ! We are happy to have learners like you :) Please share your mail id to share the data sheets :) Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@doddabasavareddy5833
@doddabasavareddy5833 3 жыл бұрын
Great explain..from where can I fetch dataset?
@edurekaIN
@edurekaIN 3 жыл бұрын
We are happy that Edureka is helping you learn better ! We are happy to have learners like you :) Please share your mail id to share the data sheets :) Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@LaeTech
@LaeTech 2 жыл бұрын
yes
@rajivgupta6573
@rajivgupta6573 4 жыл бұрын
Titanic Survivors Accuracy score can be increased to ~84% Do this, X_train,X_test,y_train,y_test = train_test_split(X,y, test_size = 0.2, random_state = 33) You might get error in some cases, so also change this, model = LogisticRegression(solver='lbfgs',max_iter=10000) Output print(classification_report(y_test,y_pred)) precision recall f1-score support 0 0.84 0.91 0.87 111 1 0.83 0.72 0.77 67 accuracy 0.84 178 macro avg 0.83 0.81 0.82 178 weighted avg 0.84 0.84 0.83 178
@zahedulislamchowdhury2279
@zahedulislamchowdhury2279 3 жыл бұрын
Thanks for Nice lecture . please send data set list for practices.
@edurekaIN
@edurekaIN 3 жыл бұрын
Definitely ! We are glad to have learners like you .Drop your mail id in the comment section for us to share the data sheets or source codes :) Do subscribe our channel and hit that bell icon to never miss an video from our channel .
@muhammadiqbalbazmi9275
@muhammadiqbalbazmi9275 5 жыл бұрын
Thanks a lot, Sister. Keep it up.
@usmanmalik2182
@usmanmalik2182 4 жыл бұрын
Very well explain. Keep it up Edureka! Team
@rajivgupta6573
@rajivgupta6573 4 жыл бұрын
SUV Prediction Instead of removing the gender column, you can include that in the model to increase the accuracy to ~90%. For that just do label encoding for column in data.columns: if data[column].dtype == np.number: continue data[column] = LabelEncoder().fit_transform(data[column]) change this too X_train,X_test,y_train,y_test = train_test_split(X,y, test_size = 0.2, random_state = 30) model = LogisticRegression(solver = 'lbfgs',max_iter = 10000) Output 0.9
@NamedAfterColor
@NamedAfterColor 4 жыл бұрын
Thank you so much.
@solankitarun911
@solankitarun911 4 жыл бұрын
Thank u..😇
@v9054
@v9054 4 жыл бұрын
Excellent presentation.
@edurekaIN
@edurekaIN 4 жыл бұрын
Thank you.
@louisadibe3189
@louisadibe3189 6 жыл бұрын
Nice video,more way of wrangling the data to view NA : titanic_data.isnull().any()
@maheshvangala8472
@maheshvangala8472 4 жыл бұрын
Thank you so much 😍😍
@rishird5635
@rishird5635 6 жыл бұрын
She is simply wow..Btw can i have the notebook?
@edurekaIN
@edurekaIN 6 жыл бұрын
Hey Rishi, glad you loved the video. Please do mention your email id(we won't publish it) so that we can mail the files to you. Cheers!
@rishird5635
@rishird5635 6 жыл бұрын
edureka! Thanks..but I did it meanwhile watching the video..thanks again
@rahulgurgude
@rahulgurgude Жыл бұрын
can you provide dataset along with tutorial ? or link to get it? on kaggle many datasets are there with 'titanic' name
@edurekaIN
@edurekaIN Жыл бұрын
Hi ! Good to know that our videos are helping you to learn better 😊 Please share your mail id to share the data sheets, We’ll update you soon . Do subscribe the channel for more updates.
@MayankGoel447
@MayankGoel447 4 жыл бұрын
Thank you for such a wonderful lesson!
Самое неинтересное видео
00:32
Miracle
Рет қаралды 2,9 МЛН
Brawl Stars Edit😈📕
00:15
Kan Andrey
Рет қаралды 54 МЛН
Electric Flying Bird with Hanging Wire Automatic for Ceiling Parrot
00:15
How do Cats Eat Watermelon? 🍉
00:21
One More
Рет қаралды 7 МЛН
Linear Regression in Python - Full Project for Beginners
50:52
Alejandro AO - Software & Ai
Рет қаралды 23 М.
Logistic Regression Project: Cancer Prediction with Python
44:21
Alejandro AO - Software & Ai
Рет қаралды 9 М.
Machine Learning for Everybody - Full Course
3:53:53
freeCodeCamp.org
Рет қаралды 6 МЛН
Самое неинтересное видео
00:32
Miracle
Рет қаралды 2,9 МЛН