フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Why svmclassify shows 'Out of memory' error on the same data on which neural network works very fine?

1 回表示 (過去 30 日間)
VIJENDRA
VIJENDRA 2015 年 6 月 9 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have a dataset of dimension <1000*1000*10>, when I tried it to classify using a neural network it works well. What I actually did is:
[m,n,p] = size(Dataset);
Dataset = reshape(Dataset,m*n,p);
NNoutput = net(Dataset);
and it works well with <1000000*10> dimensional dataset. but when i gives the same as input to a 'svmclassify' it shows
Error using svmclassify (line 114)
An error was encountered during classification.
Out of memory. Type HELP MEMORY for your options.
I have 8 GB of RAM installed in my PC with intel i7-2600CPU @ 3.40GHz processor.
  1 件のコメント
Walter Roberson
Walter Roberson 2015 年 6 月 9 日
Could you show the sizes of the fields of the structure returned by svmtrain() ?

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by