필터 지우기
필터 지우기

I want a code for kernel PCA

조회 수: 4 (최근 30일)
BANI tita
BANI tita 2013년 2월 14일
댓글: Hariprasad Kannan 2018년 3월 7일
hello, I am looking for a site where I can find a program reduction dimentionality kernel PCA think you

답변 (1개)

Shashank Prasanna
Shashank Prasanna 2013년 2월 14일
MATLAB currently doesn't offer this as a part of the statistics toolbox. In the past I've used this and it worked really well for me:
  댓글 수: 6
BANI tita
BANI tita 2013년 2월 19일
편집: Walter Roberson 2013년 2월 19일
hello,
here is the program I run but still it gives me same error
%%%-----------------------------------
load baseAT.mat;
X=PA;
labels=lblsa;
figure, scatter3(X(:,1), X(:,2), X(:,3), 5, labels); title('Original dataset'), drawnow
no_dims = round(intrinsic_dim(X, 'EigValue'));
disp(['MLE estimate of intrinsic dimensionality: ' num2str(no_dims)]);
mappedX = compute_mapping(X, 'KernelPCA', no_dims, 7);
figure, scatter(mappedX(:,1), mappedX(:,2), 5, labels); title('Result of dimensionality reduction'), drawnow
Hariprasad Kannan
Hariprasad Kannan 2018년 3월 7일
The kernel pca code doesn't address the pre-image problem. It gives location of the points in the feature space.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Dimensionality Reduction and Feature Extraction에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by