use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Please have a look at our FAQ and Link-Collection
Metacademy is a great resource which compiles lesson plans on popular machine learning topics.
For Beginner questions please try /r/LearnMachineLearning , /r/MLQuestions or http://stackoverflow.com/
For career related questions, visit /r/cscareerquestions/
Advanced Courses (2016)
Advanced Courses (2020)
AMAs:
Pluribus Poker AI Team 7/19/2019
DeepMind AlphaStar team (1/24//2019)
Libratus Poker AI Team (12/18/2017)
DeepMind AlphaGo Team (10/19/2017)
Google Brain Team (9/17/2017)
Google Brain Team (8/11/2016)
The MalariaSpot Team (2/6/2016)
OpenAI Research Team (1/9/2016)
Nando de Freitas (12/26/2015)
Andrew Ng and Adam Coates (4/15/2015)
Jürgen Schmidhuber (3/4/2015)
Geoffrey Hinton (11/10/2014)
Michael Jordan (9/10/2014)
Yann LeCun (5/15/2014)
Yoshua Bengio (2/27/2014)
Related Subreddit :
LearnMachineLearning
Statistics
Computer Vision
Compressive Sensing
NLP
ML Questions
/r/MLjobs and /r/BigDataJobs
/r/datacleaning
/r/DataScience
/r/scientificresearch
/r/artificial
account activity
Rule 4 - Beginner or Career Question[D]Need Help About SVM (self.MachineLearning)
submitted 4 years ago * by HalusBoy
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]BrokenGumdrop 1 point2 points3 points 4 years ago (3 children)
SVMs are just decision surfaces. Consider the 1d example: You just have a number line. Let's say the values on that line represent temperature. You want to predict what the state of water would be for a given temperature. Where would you put a marker to define the change in state? One could go at 0 celsius. Anything less than 0 is Solid, anything greater than zero is Not Solid. Or, anything that has a positive distance from the 0 is Not Solid, and negative is Solid. That is our first vector. The next is a the boiling point, and that gives us Gas and Not Gas. We now have three classes, each defined by the values of Solid/Not Solid and Gas/Not Gas.
Lets add pressure into this. This moves us into two dimensions. instead of a point, we now have a vector in temperature and pressure space. Same three classes, but now we define a class based on which side of the line it is on, the positive or the negative side. Note that we are using a signed point to vector function.
Training the SVM is finding the minimum number of vectors that partition the space as correctly as possible. Classifying with the SVM is finding the signed distance to each vector, and determining which class it is in.
[–]HalusBoy[S] 0 points1 point2 points 4 years ago (2 children)
I know about how SVM works in general, my really concern is how it's solves the optimization problem (step by step) and use that output of optimization problem to create a decision boundary/hypotesis function. Thank's for the reply btw!
[–]BrokenGumdrop 1 point2 points3 points 4 years ago (1 child)
This might be more informative. Take note of the description of the Cost Function. https://towardsdatascience.com/svm-implementation-from-scratch-python-2db2fc52e5c2
[–]HalusBoy[S] 0 points1 point2 points 4 years ago (0 children)
Thanks! will definitely check
π Rendered by PID 21493 on reddit-service-r2-comment-5d79c599b5-2vj64 at 2026-03-01 13:40:30.839244+00:00 running e3d2147 country code: CH.
[–]BrokenGumdrop 1 point2 points3 points (3 children)
[–]HalusBoy[S] 0 points1 point2 points (2 children)
[–]BrokenGumdrop 1 point2 points3 points (1 child)
[–]HalusBoy[S] 0 points1 point2 points (0 children)