Top "Svm" questions

Support vector machines (SVMs) are a set of related supervised learning methods that analyze data and recognize patterns, used for classification and regression analysis.

Building an SVM with Tensorflow

I currently have two numpy arrays: X - (157, 128) - 157 sets of 128 features Y - (157) - classifications of the feature sets …

python tensorflow machine-learning svm
Pointers to some good SVM Tutorial

I have been trying to grasp the basics of Support Vector Machines, and downloaded and read many online articles. But …

algorithm machine-learning svm libsvm
predict.svm does not predict new data

unfortunately I have problems using predict() in the following simple example: library(e1071) x <- c(1:10) y <- …

r svm libsvm predict
Where is it best to use svm with linear kernel?

I am currently studing svm and was wondering what the application of svm`s with linear kernel is. In my …

machine-learning classification svm mathematical-optimization
How to apply standardization to SVMs in scikit-learn?

I'm using the current stable version 0.13 of scikit-learn. I'm applying a linear support vector classifier to some data using the …

python scikit-learn classification svm normalization
Find out error rate using sklearn

I want to find out the error rate using svm classifier in python, the approach that I am taking to …

python machine-learning svm scikits scikit-learn
Which machine learning library to use

I am looking for a library that, ideally, has the following features: implements hierarchical clustering of multidimensional data (ideally on …

cluster-analysis machine-learning svm
Image classification using SVM Python

I am currently working on a projet to perform image recognition. There is a big set of images and I …

python image-processing classification svm image-recognition
Matlab libsvm - how to find the w coefficients

How can find what the vector w is, i.e. the perpendicular to the separation plane?

matlab svm libsvm
using precomputed kernels with libsvm

I'm currently working on classifying images with different image-descriptors. Since they have their own metrics, I am using precomputed kernels. …

matlab machine-learning svm libsvm