-
Recent Posts
Recent Comments
Vaibhav on Distributed Learning Yuanqing on Configuration Spaces and the M… Mel on Recurrent Neural Networks Teradata Expands Cap… on K-modes Teradata Expands Cap… on K-modes Archives
- December 2016
- November 2016
- October 2016
- June 2016
- April 2016
- January 2016
- November 2015
- October 2015
- July 2015
- June 2015
- May 2015
- January 2015
- September 2014
- June 2014
- May 2014
- March 2014
- February 2014
- January 2014
- December 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
Categories
Meta
Monthly Archives: May 2013
Kernels
Over the last few weeks, I’ve introduced two classification methods – Support Vector Machines (SVM) and Logistic Regression – that attempt to find a line, plane or hyperplane (depending on the dimension) that separates two classes of data points. This has … Continue reading
Posted in Classification, Normalization/Kernels
18 Comments
Logistic regression
In the last post, I introduced the Support Vector Machine (SVM) algorithm, which attempts to find a line/plane/hyperplane that separates the two classes of points in a given data set. This algorithm adapts elements of linear regression, a statistical tool (namely, … Continue reading
Posted in Classification, Regression
18 Comments
Linear Separation and Support Vector Machines
So far on this blog, we’ve seen two very different approaches to constructing models that predict data distributions. With regression, we replaced the original data points with an equation defining a relatively simple shape that approximates the data, then used … Continue reading
Posted in Classification
18 Comments
K-Nearest Neighbors
Two posts back, I introduced the Nearest Neighbor classification algorithm and described how it implicitly defines a distribution made up of Voronoi cells around the data points, with each Voronoi cell labeled according to the label of the point that … Continue reading
Posted in Classification
8 Comments