The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"How can I control the feature demonsion using Kernel PCA?"
I'm using kernel pca in rapidminer, however I found no place to tune the demonsion of transformed space like PCA... i.e., after carried out Kernel PCA, I always get a space with # of demonsion equals to the # of sample datas...how can I tune it just PCA? thanks.
<operator name="KernelPCA" class="KernelPCA">
<parameter key="kernel_type" value="polynomial"/>
</operator>
<operator name="ModelApplier (2)" class="ModelApplier">
</operator>
0
Answers
unfortunatly you have to perform a conventional feature selection after the kernelPCA, since it always returns the number of features it was possible to calculate. Unlike the PCA this new features are NOT ordered by their variance, prohibiting the usual heuristic of removing the least variant directions in data space.
Greetings,
Sebastian
Thank you very much~ ~