2
votes
1answer
54 views

What exactly is the equation for SVM classification for new example?

I understand that in the case of Logistic Regression, we simply multiply our weights with Input example for classification. But what exactly is the equation that we calculate in the case of SVM to ...
0
votes
2answers
47 views

In SVM, what are the labels and how do you get them from the data?

I'm working on a school project and have decided to use SVM for stock market prediction. I have a 1000x5 matrix of stock quotes containg data for open, close, high, low, volume data. From what I ...
2
votes
0answers
128 views

Support vector machines and Granger causality

I was wondering if Granger causality would be an efficient tool for searching for relevant input data for an SVM system. For example if I want to forecast SP 500 returns, I could put in my input data ...
1
vote
0answers
122 views

SVM and non-linear predictive models - feature selection

Just throwing out a general question. What do people think of applying feature selection methods when using SVMs to build predictive models? I understand that SVM have built in regularization with how ...
1
vote
0answers
101 views

Robust Support Vector Regression - robust to outliers

I've been reading/looking around for literature on support vector regressions that are relatively robust to outliers. I understand that standard SVRs can be significantly influenced by a few large ...
4
votes
2answers
394 views

Support vector regression on skewed/high kurtosis data

I'm using support vector regression to model some fairly skewed data (with high kurtosis). I've tried modeling the data directly but I'm getting erroneous predictions I think mainly due to the ...
1
vote
1answer
138 views

SVM parameter selection with NM simplex (or other algorithms)

I'm having some trouble getting the NM Simplex to find a good minimum for selecting hyperparameters of a rbf SVC. Not only am I tuning the 2 SVC parameters (C and gamma) I also have five class weights ...
1
vote
1answer
158 views

Non-linear regularized SVM implementation

Just a general question. Are there any good non-linear SVM (kernelized) implementations that include a regularization component (e.g. $L_1$, SCAD etc)? I've been looking around but man there are a lot ...
2
votes
0answers
81 views

Non-linear (e.g. RBF kernel) SVM with SCAD penalties implementation

Is there one? I think there's a penalizedSVM package in R but it looks to use a linear kernel. Can't quite tell from the documentation. If it's linear, is there a R package that lets me calculate the ...
2
votes
1answer
79 views

General Non-linear Regularized Models

Had a general questions. Are there any good non-linear models with regularization? I've heard of some linear models with regularization but not too many non-linear ones. I understand that you can use ...
1
vote
1answer
587 views

Fastest SVM implementation

More of a general question. I'm running a rbf SVM for predictive modeling. I think my current program definitely needs a bit of a speed up. I use scikits learn with a coarse to fine grid search + ...
2
votes
1answer
203 views

Multiclass SVM + Ineffective X Validation, Time Series Prediction

I've recently run into an interesting and rather odd problem with cross validating a multiclass SVM that I can't figure out. Basically, I have a timeseries to predict and have created a dataset of ...
2
votes
0answers
316 views

Cross validation procedure - is this right?

Just want to check that I am performing my cross validation procedures right. I'm using a non-linear svm. I do a five fold cross validation (5 splits of test/train on my original training data) and ...
2
votes
1answer
122 views

SVM and cross validation with a minimum finding algorithm

Just a simple question on parameter selection for SVMs. If I use a minimum finding algorithm to find the optimal parameters for a set of data, how do I "average" the parameters over a set of cross ...
2
votes
2answers
602 views

SVM parameter selection and cross validation

Have a quick question about parameter selection for an SVM. I'm using a rbf kernel, so trying to optimize C and gamma. I have an example set of around 4500, about 700 features, and using 700 examples ...
1
vote
3answers
705 views

Which performance measure to use when using SVM: MSE or MAE?

It is a common practice to measure an SVM model's performance by calculating its MSE (Mean Square Error). Why not use Mean Absolute Error (averaging errors' absolute values instead of squared values)? ...
3
votes
2answers
330 views

SVM, variable interaction and training data fit

I have 2 general/more theoretical question. 1) I'm curious how SVMs handle variable interactions when building predictive models. E.g., if I have two features f1 and f2 and the target depends on f1, ...
1
vote
1answer
1k views

Best way to handle unbalanced multiclass dataset with SVM

I'm trying to build a prediction model with SVMs on fairly unbalanced data. My labels/output have three classes, positive, neutral and negative. I would say the positive example makes about 10 - 20% ...