Cursera: machine learning ex7.
This commit is contained in:
26
machine_learning/mlclass-ex7-008/mlclass-ex7/kMeansInitCentroids.m
Executable file
26
machine_learning/mlclass-ex7-008/mlclass-ex7/kMeansInitCentroids.m
Executable file
@@ -0,0 +1,26 @@
|
||||
function centroids = kMeansInitCentroids(X, K)
|
||||
%KMEANSINITCENTROIDS This function initializes K centroids that are to be
|
||||
%used in K-Means on the dataset X
|
||||
% centroids = KMEANSINITCENTROIDS(X, K) returns K initial centroids to be
|
||||
% used with the K-Means on the dataset X
|
||||
%
|
||||
|
||||
% You should return this values correctly
|
||||
centroids = zeros(K, size(X, 2));
|
||||
|
||||
% ====================== YOUR CODE HERE ======================
|
||||
% Instructions: You should set centroids to randomly chosen examples from
|
||||
% the dataset X
|
||||
%
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
% =============================================================
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user