How can I save my k-means clustering model?
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Yusuf Suer Erdem
il 21 Dic 2021
try to save in '.mat' format.
e.g.
myMatrix = rand( 100, 100 );
filename = 'C:\Stuff\Somefile.mat';
save( filename, 'myMatrix' );
0 Commenti
Vedere anche
Categorie
Scopri di più su Cluster Analysis and Anomaly Detection in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!