My work is on speech recognition. And this is what I have so far:
FOR TRAINING
I have
input vector matrix (training data)
of size11811x65 double
, corresponding response of size1*65 double
.
FOR TESTING
I have a matrix of size
5942x11 double
.
I want to use classification learner app having "Multiclass SVM".
How should I give input to classification learner app?
- Do we only give training data and its corresponding output?
- Can give both training as well as testing data simultaneously to the app?
- ? (Maybe I'm doing it all wrong?)