Borrar filtros
Borrar filtros

I want a code for kernel PCA

4 visualizaciones (últimos 30 días)
BANI tita
BANI tita el 14 de Feb. de 2013
Comentada: Hariprasad Kannan el 7 de Mzo. de 2018
hello, I am looking for a site where I can find a program reduction dimentionality kernel PCA think you

Respuestas (1)

Shashank Prasanna
Shashank Prasanna el 14 de Feb. de 2013
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 comentarios
BANI tita
BANI tita el 19 de Feb. de 2013
Editada: Walter Roberson el 19 de Feb. de 2013
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 el 7 de Mzo. de 2018
The kernel pca code doesn't address the pre-image problem. It gives location of the points in the feature space.

Iniciar sesión para comentar.

Categorías

Más información sobre Dimensionality Reduction and Feature Extraction en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by