forked from PRML/PRMLT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]). |