Here is a quick *summary* of this video: -SVM can be used to do *binary* classification -SVM finds a *hyper-plane* (line in 2d, plane in 3d, etc) that separates its training data in such a way that the distance between the hyper plane and the closest points from each class is maximized -once SVM finds this hyper-plane, you can classify new data points by seeing which side of this hyper-plane they land on -SVM can only be used on data that is *linearly separable* (i.e. a hyper-plane can be drawn between the two groups) -Fear not though, as a common way to make data linearly separable is to map it to a *higher dimension* (but beware, as this is computationally expensive). -You can map it however you want, but there are established ways to do it, they are called *Kernels* . By using a combination of these Kernels, and tweaking their parameters, you'll most likely achieve better results than making up your own way :P -The really cool thing about SVMs are that you can use them when you have *very little data* compared to the number of features each of your data points has. In other words, when the number of data to the number of features per data ratio is low. Normally when this ratio is low, you experience overfitting, but since SVMs only use a few of your data points to create the hyper-plane in the first place, it doesn't really care that you give it such little data. Note however that accuracy of predictions is reduced when you use very little data. -SVMs simply tell you what class a new data point falls in, *not the probability* that it's in that class. This is of course a disadvantage. Thanks for such a fun, engaging, simple, yet *informative* explanation of SVMs! Really enjoyed watching this!
whoever came up with this Support Vector Machine method is a fucking genius! To try to convert a seemingly unsolvable situation to a familiar solvable situation and then apply the traditional solution. Such a simple concept but benefited so many industries. Salute. Wish I could be like the person.
The algorithm was invented by a group of soviet mathematicians, working for AT & T Bell. Initial version dates back to 60-s, and this kernel trick, if I'm not mistaken, was added in 90-x (invented by different people and repurposed for this algo). It's all genious indeed.
MOST USEFUL, INFORMATIVE video I've come across yet for answering the question "WHAT IS a Support Vector Machine?" :-) So many OTHER videos try to tell you merely HOW to USE SVMs, WITHOUT actually DEFINING them; this is ever-and-always a clear indication of LACK OF GENUINE "UNDERSTANDING", because all their focus is on only on the "HOW"... IN SHARP (and HAPPY) CONTRAST, YOUR video appears genuinely PLEASED to START with an explanation of WHAT "Support Vectors" ARE, and HOW the term "Support Vector Machine" even got DERIVED ! FANTASTIC ! NICELY DONE. MORE grease to your elbows ! -Mark Vogt | Fellow Data Scientist/Consultant/Solution Architect in Chicagoland area...
The most succinct and beautiful explanation of SVM I have found! I was struggling to grasp the basics. Thank you so much for creating such a wonderful tutorial! :)
Wow! I spend many hours trying to understand what I have learned in classes... so many words and logic functions but no big picture in my head that helped me to understand why and how I use it. but you simplyfied it so nice with simple storytelling, pratical selfexplaining pictures and videos that give me a good picture why and how I use it. Thank you so much. Great work! ;-)
Thank you Rene I'm glad you enjoyed the video. 😁. Yeah the reason I made this video was to make these very hard topics easier to grasp especially for people who are just starting out in the field of machine learning.
Thanks for using the cat/dog identification example to explain the concept of SVM. After watching many videos, I came across the right one that gave me a basic idea of SVM.
Thank you Aditya G :). I am really glad you enjoyed the video and that it made sense to you. If you have anything that you want me to make a video about, just use the hashtag #augmentedstartups with your comment and I'll see what I can do. If you haven't already, check out my channel page to see all of the topics I've covered so far www.augmentedstartups.info/RUclips or check out our courses here www.augmentedstartups.com/store or you can consider becoming a member of Augmented Startups and get access to Advanced Tutorials :) ruclips.net/channel/UCFJPdVHPZOYhSyxmX_C_Pewjoin I look forward to seeing you around! 👊
This is an icy cool explanation of a very tough concept to grasp, especially for beginners like me. Thank you so much for making this. Saves so much time and frustration.
TensorFlow is a free and open-source software library for machine learning. It can be used across a range of tasks but has a particular focus on training and inference of deep neural networks. Tensorflow is a symbolic math library based on dataflow and differentiable programming.
Thank you Shreyas Chaturvedi :). I am really glad you enjoyed the video. If you have anything that you want me to make a video about, just use the hashtag #augmentedstartups with your comment and I'll see what I can do. If you haven't already, check out my channel page to see all of the topics I've covered so far www.augmentedstartups.info/RUclips or check out our courses here www.augmentedstartups.com/store or you can consider becoming a member of Augmented Startups and get access to Advanced Tutorials :) bit.ly/Join_AugmentedStartups I look forward to seeing you around! 👊
Really intrigued by the way you teach these topics like they're nothing. Could you help me with how to get started in machine learning in python? I know how python 3 works.
Thank you Andru Thifaldy :). I am really glad you enjoyed the video. If you have anything that you want me to make a video about, just use the hashtag #augmentedstartups with your comment and I'll see what I can do. If you haven't already, check out my channel page to see all of the topics I've covered so far www.augmentedstartups.info/RUclips or check out our courses here www.augmentedstartups.com/store or you can consider becoming a member of Augmented Startups and get access to Advanced Tutorials :) ruclips.net/channel/UCFJPdVHPZOYhSyxmX_C_Pewjoin I look forward to seeing you around! 👊
Thank you for such an insightful video. I finally learned what SVM is. Can you please tell me which software do you use for video editing? Thanks for all your help
⭐ If you enjoy my work, Id really appreciate a Coffee😎☕ - augmentedstartups.info/BuyMeCoffee
Here is a quick *summary* of this video:
-SVM can be used to do *binary* classification
-SVM finds a *hyper-plane* (line in 2d, plane in 3d, etc) that separates its training data in such a way that the distance between the hyper plane and the closest points from each class is maximized
-once SVM finds this hyper-plane, you can classify new data points by seeing which side of this hyper-plane they land on
-SVM can only be used on data that is *linearly separable* (i.e. a hyper-plane can be drawn between the two groups)
-Fear not though, as a common way to make data linearly separable is to map it to a *higher dimension* (but beware, as this is computationally expensive).
-You can map it however you want, but there are established ways to do it, they are called *Kernels* . By using a combination of these Kernels, and tweaking their parameters, you'll most likely achieve better results than making up your own way :P
-The really cool thing about SVMs are that you can use them when you have *very little data* compared to the number of features each of your data points has. In other words, when the number of data to the number of features per data ratio is low. Normally when this ratio is low, you experience overfitting, but since SVMs only use a few of your data points to create the hyper-plane in the first place, it doesn't really care that you give it such little data. Note however that accuracy of predictions is reduced when you use very little data.
-SVMs simply tell you what class a new data point falls in, *not the probability* that it's in that class. This is of course a disadvantage.
Thanks for such a fun, engaging, simple, yet *informative* explanation of SVMs! Really enjoyed watching this!
Thanks..
That is well summarize, thank you :).
Thanks bro
This is cool than video thanx man
Thanks
whoever came up with this Support Vector Machine method is a fucking genius! To try to convert a seemingly unsolvable situation to a familiar solvable situation and then apply the traditional solution. Such a simple concept but benefited so many industries. Salute. Wish I could be like the person.
⭐ Haha yeah he or she is genius!! BTW if you enjoy my work, Id really appreciate a Coffee😎☕ - augmentedstartups.info/BuyMeCoffee
The algorithm was invented by a group of soviet mathematicians, working for AT & T Bell.
Initial version dates back to 60-s, and this kernel trick, if I'm not mistaken, was added in 90-x (invented by different people and repurposed for this algo). It's all genious indeed.
I learnt more in this video than two months of classes.
It means a lot. Thank you for the comment. I'm glad I could help 😊
mi2
Exactly 😂😂😂😂
You are in wrong class
⭐ Thanks, Also if you enjoy my work, Id really appreciate a Coffee😎☕ - augmentedstartups.info/BuyMeCoffee
MOST USEFUL, INFORMATIVE video I've come across yet for answering the question "WHAT IS a Support Vector Machine?" :-)
So many OTHER videos try to tell you merely HOW to USE SVMs, WITHOUT actually DEFINING them; this is ever-and-always a clear indication of LACK OF GENUINE "UNDERSTANDING", because all their focus is on only on the "HOW"...
IN SHARP (and HAPPY) CONTRAST, YOUR video appears genuinely PLEASED to START with an explanation of WHAT "Support Vectors" ARE, and HOW the term "Support Vector Machine" even got DERIVED ! FANTASTIC !
NICELY DONE.
MORE grease to your elbows !
-Mark Vogt | Fellow Data Scientist/Consultant/Solution Architect in Chicagoland area...
The most succinct and beautiful explanation of SVM I have found! I was struggling to grasp the basics. Thank you so much for creating such a wonderful tutorial! :)
One of the best videos I have seen on RUclips to date. Given a perfect intuition and explanation on SVMs!
Thank you so much 😁. Please share this video if it was helpful, I'd really appreciate it
@@Augmented_AI Definitely! :)
BTW, do you know any good APIs which provide Traffic flow History data?
@@padisalashanthan98 nothing as yet. But I'll look into it
@@Augmented_AI Thank you very much!
Wow! I spend many hours trying to understand what I have learned in classes... so many words and logic functions but no big picture in my head that helped me to understand why and how I use it. but you simplyfied it so nice with simple storytelling, pratical selfexplaining pictures and videos that give me a good picture why and how I use it. Thank you so much. Great work! ;-)
Thank you Rene I'm glad you enjoyed the video. 😁. Yeah the reason I made this video was to make these very hard topics easier to grasp especially for people who are just starting out in the field of machine learning.
Took Linear Algebra and _just_ learned what all that "kernal" stuff was about. Thank you!
Ahh... You show Majin Boo under the Margin... Smart... And really wonderful Explanation of SVM. keep up the good work.
I'm glad there are some Dbz fans out there 😁. Thanks for the comment.
Very Helpful to understand the Basic concept. Thank You.
This is better than I was hoping for! Thanks so much for making videos that easily summarize the important parts of my uni papers!
I'm glad I can help :)
Thanks for the simplified explanation, it makes learning fun, you are my academic hero
Love these comments😁. I'm glad I could help and make learning fun! Thank you.
Thanks for using the cat/dog identification example to explain the concept of SVM. After watching many videos, I came across the right one that gave me a basic idea of SVM.
Thank you Aditya G :). I am really glad you enjoyed the video and that it made sense to you. If you have anything that you want me to make a video about, just use the hashtag #augmentedstartups with your comment and I'll see what I can do.
If you haven't already, check out my channel page to see all of the topics I've covered so far www.augmentedstartups.info/RUclips or check out our courses here www.augmentedstartups.com/store
or you can consider becoming a member of Augmented Startups and get access to Advanced Tutorials :)
ruclips.net/channel/UCFJPdVHPZOYhSyxmX_C_Pewjoin
I look forward to seeing you around! 👊
Thanks a lot sir।
Very helpful video for me .
Love from republic of india. ❤️❤️❤️
You are most welcome :)
It's really helpful to understand with some real time example! Thanks!
I love your approach on teaching things that should be made fun learning :)
Very intuitive. Explained SVM so clearly.
Your explanation was phenomenal. No one could possibly explain it in simpler terms.
+Bennet Eapen thank you, glad you enjoyed it :)
This is very helpful. Thanks for creating this valuable content!
Thank you I'm so glad you enjoyed it 😊
nice.. you make it easy to understand the concept of svm
Glad you enjoyed it 😁. What would you like to see next
i live for this kind of explanation. Cute and easy to understand. Thanks!
Yeah. 😁 Learning should fun right?
This is an icy cool explanation of a very tough concept to grasp, especially for beginners like me. Thank you so much for making this. Saves so much time and frustration.
Great Introduction..your usage of visual aids is just fantastic!!
Awesome you added Margin Buu, I have never thought about it like that.
Had to throw in the dbz reference 😁
Thanks and lots of love from INDIA 😍
Thank you Sachin. Really appreciate it 😁
Amazingly easy explained!
The first point discussed in advantages contradicts the one discussed in disadvantages. Please clear this!!
Thank you!well explained
Great channel for educational videos, the best, very interesting !!
This video was so good! Thanks to you I'll pass my data science class!
That's really great to hear Jack! 😀 I'm really glad that these videos could help you.
I see what you did with that "Margin" Buu :D.
Anyway thanks this was easy, clear and isn't boring like most other guides
⭐ Haha, Thanks, Also if you enjoy my work, Id really appreciate a Coffee😎☕ - augmentedstartups.info/BuyMeCoffee
thats the best explanation i heard yet
neat and precise, thanks for your explaination
You are most welcome. What would you like to see next?
@@Augmented_AI how big Reinforcment Learning Projects like for Dota 2 are aproached :)
RIP Grumpy Cat :) You were the GOAT
TensorFlow is a free and open-source software library for machine learning. It can be used across a range of tasks but has a particular focus on training and inference of deep neural networks. Tensorflow is a symbolic math library based on dataflow and differentiable programming.
you are a genius really genius much thanks, may Allah bless you
🙏
Great video! Good job!
Thank you so much Thomas 😁
You deserve a lot more subscribers. Awesome explanation :)
Thank you so much Amresh, I really appreciate the comment. :) The subscribers will come soon 😎
Thank you sir for teaching in an easy and understandable way
Awesome, I can finally understand what the SVM is!
Best video
Love from india
Stop scrolling to comments. pay heed to what he is teaching. he is awesome
Aweeeeeeeeeesomeeee...one of the best videos on SVM's
Very well explained! 👍
Thank you Rishabh 😁
Great explanation. The use of visual examples make it easy to understand SVM
This video helped in clear conceptual understanding on non linear SVM. Thanks for uploading
Excellent video. Thanks for showing the applications of such powerful tool.
+filick82 thank you, I really appreciate it :)
Simple and easy explanation of SVM. Thank you.
Awesome video bro!
Thanks man 😆😁🤟
This was very clear and helpful, thank you!
Excellent video !
Thank you, that helped me a lot calming down before the exam tomorrow on Machine Learning!
Your videos are always amazing and so well-explained.
very well explained! thank you :)
Thank you Shreyas Chaturvedi :). I am really glad you enjoyed the video. If you have anything that you want me to make a video about, just use the hashtag #augmentedstartups with your comment and I'll see what I can do.
If you haven't already, check out my channel page to see all of the topics I've covered so far www.augmentedstartups.info/RUclips or check out our courses here www.augmentedstartups.com/store
or you can consider becoming a member of Augmented Startups and get access to Advanced Tutorials :)
bit.ly/Join_AugmentedStartups
I look forward to seeing you around! 👊
great video . Thank you
Thank you Hk 😁
Wonderful explanation sir!
Thank you Kaisher :)
Awesome video! You have a great style of teaching.
Thank you 😃😁
Really intrigued by the way you teach these topics like they're nothing. Could you help me with how to get started in machine learning in python? I know how python 3 works.
The Best Explanation, I ever hear about the support vector machine..
neatly explained !!
Thank you Vindhya 😁👍
YOU INSANE!! Augmented Startups!
A very excellent explanation..... And efficient use of visualisation
Cool and very useful.
Thank you Manuel 😁
Amazing!! And that cat-dog image is killing me 😂
I'm glad you enjoyed it 🤣. What would you like to see next?
⭐ Haha, Thanks, Also if you enjoy my work, Id really appreciate a Coffee😎☕ - augmentedstartups.info/BuyMeCoffee
i can easily understand how svm works! thx for the video!
Really good one.. keep up the good work
Thank you Aakash 😄
It was pretty pretty useful! Thank you so much!
+Valeria Pérez - Cong thank you for the comment :) I really appreciate it.
Your teching is very good. Thank you sir for teaching us in easy way.
You are most welcome Ishikia :)
thank you
You're welcome🙂
super cool and strongly recommended!
Wonderful explanation.. thank you so much..
+DINESHKUMAR MURUGAN thank you so much for the support :)
The best explained video onSVM
Thank you Bilal, I really appreciate it :)
Incredible explanation sir.
Good examples
thanks dude
You are most welcome :)
Fantastic content
Thank you so much Manuel 😁👍
Amazing vid!!
Fantastic introduction
Thank you, I really appreciate it :)
awesome
i love it
Thank you Raunak. What would you like to see next from us?
Awesome Explanation covered and explained brilliantly.
Thank you Aman 😁. Really appreciate the feedback
Clear explanation!
great video... thump up for clear explanation
Thank you so much I really appreciate it :)
u wellcome Sir
Thanks so much for this video.
this was better than my professors description
I'm really glad I could help 😁.
this video is very helpful to understand support vector machines
+Shaik Shabeena Begum thank you I'm glad it was easy to understand :)
Thanks a lot !
very nice video, Thank you :)
Great video, thanks!
thanks for easy explanation.
Superb Explanation. I understood clearly:)
+MAGE VLOGs I'm glad it was clear and detailed. Thank you for the comment :)
thanks! love it
Thank you Andru Thifaldy :). I am really glad you enjoyed the video. If you have anything that you want me to make a video about, just use the hashtag #augmentedstartups with your comment and I'll see what I can do.
If you haven't already, check out my channel page to see all of the topics I've covered so far www.augmentedstartups.info/RUclips or check out our courses here www.augmentedstartups.com/store
or you can consider becoming a member of Augmented Startups and get access to Advanced Tutorials :)
ruclips.net/channel/UCFJPdVHPZOYhSyxmX_C_Pewjoin
I look forward to seeing you around! 👊
Nice video! All I have to add is, "Margin Buu" :p
Thank you sir
Love this vid!!!! Thank youuu ❤️❤️❤️
I'm glad you do 😊. Thank you Vaidehi
Good video! crisp! it would be great if you make v2 of this video touching "soft margin" SVM as well
Mejor canal educativo, buen contenido excelente
Thank you for such an insightful video. I finally learned what SVM is. Can you please tell me which software do you use for video editing?
Thanks for all your help
I'm glad I could help you learn SVM 😁👍. Sure I use video scribe for it.
Thanks for letting me know 😊
Thanks a lot sir.... :)
Amazing, amazing job!
Thank you so much :D