How can I save my k-means clustering model?
3 ビュー (過去 30 日間)
古いコメントを表示
After running k-means clustering to a dataset, how do I save the model so that it can be used to cluster new set of data?
0 件のコメント
回答 (1 件)
Yusuf Suer Erdem
2021 年 12 月 21 日
try to save in '.mat' format.
e.g.
myMatrix = rand( 100, 100 );
filename = 'C:\Stuff\Somefile.mat';
save( filename, 'myMatrix' );
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Cluster Analysis and Anomaly Detection についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!