Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SVMStruct (Matlab を使用して取得svmtrain) をファイルに書き込み、必要なときに後で読み取る方法はありますか。データのトレーニング後に使用できないため、これを実行したいのですSVMclassifyが、メモリ不足エラーが発生します。
svmtrain
SVMclassify
save保存するために使用できます:
save
svmstruct=svmtrain(........ save('file2save.mat','svmstruct');
load後でリロードするには:
load
load('file2save.mat','svmstruct'); svmclassify(svmstruct,.........