Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
sth4nth committed Mar 13, 2017
1 parent 7b87812 commit ef94fc3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions chapter06/knKmeans.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
% K: n x n kernel matrix
% init: either number of clusters (k) or initial label (1xn)
% Output:
% label: 1 x n clustering result label
% energy: optimization target value
% label: 1 x n sample labels
% model: trained model structure
% energy: optimization target value
% Reference: Kernel Methods for Pattern Analysis
% by John Shawe-Taylor, Nello Cristianini
% Written by Mo Chen ([email protected]).
Expand Down
2 changes: 1 addition & 1 deletion chapter09/kmeans.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
% X: d x n data matrix
% init: k number of clusters or label (1 x n vector)
% Output:
% label: 1 x n cluster label
% label: 1 x n sample labels
% mu: d x k center of clusters
% energy: optimization target value
% Written by Mo Chen ([email protected]).
Expand Down
2 changes: 1 addition & 1 deletion chapter09/kmedoids.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
% X: d x n data matrix
% init: k number of clusters or label (1 x n vector)
% Output:
% label: 1 x n cluster label
% label: 1 x n sample labels
% index: index of medoids
% energy: optimization target value
% Written by Mo Chen ([email protected]).
Expand Down
2 changes: 1 addition & 1 deletion chapter09/litekmeans.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
% X: d x n data matrix
% label: initial sample labels
% Output:
% label: 1 x n sample label
% label: 1 x n sample labels
% mu: d x k center of clusters
% Written by Mo Chen ([email protected]).

0 comments on commit ef94fc3

Please sign in to comment.