Borrar filtros
Borrar filtros

Error in matlab code for best c and gamma using svmtrain()

6 visualizaciones (últimos 30 días)
Astha Ameta
Astha Ameta el 20 de En. de 2017
Comentada: Walter Roberson el 21 de En. de 2017
In the following code snippet:
for i=1:numel(C)
cv_acc(i) = svmtrain(labels, data, sprintf('-c %f -g %f -v %d ', 2^C(i), 2^gamma(i), folds));
end
I get the Error: label vector and instance matrix must be double In an assignment A(I) = B, the number of elements in B and I must be the same.
Please advise.

Respuestas (1)

Walter Roberson
Walter Roberson el 20 de En. de 2017
It looks to me that you are using libsvm syntax. However I suspect that you are getting the svmtrain that is part of the Statistics toolbox which uses a different syntax.
Your code assumes that you will get back a single value each time. We cannot tell whether it expecting a numeric value or a structure member or a cell array. Whatever it expected, it is not getting back exactly one of whatever is being returned. That can happen if a routine returns an empty variable rather than a single value.
If you were expecting a single numeric value returned then you are probably not calling the routine correctly.
  2 comentarios
Astha Ameta
Astha Ameta el 21 de En. de 2017
The same statement has been used by many programmers through libsvm, so I am unable to understand what is going wrong here.
What should be the correct way to call the routine as I need to return the value of svmtrain in an array variable only so that I can find the maximum of it by comparing.
Walter Roberson
Walter Roberson el 21 de En. de 2017
Use
which svmtrain
I suspect you will find you are using svmtrain from the Statistics toolbox

Iniciar sesión para comentar.

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by