Closed eahenle closed 1 year ago
Also may be worth documenting the fact that fit
applies kernel centering (so the user needn't center precomputed kernels). Kind of harmless to leave this undocumented, but also easy enough to mention in the docs.
You fixed the old doc file. Please, fix doc string for fit
function.
I have added the explanation of kernel=nothing
to the docstring
Thanks.
Bug:
fit(KernelPCA, X; kernel=nothing)
mutatesX
viaK = X
prior to callingtransform!
onK
Fix:K = copy(X)
Documentation also does not mention the use of
kernel=nothing
whenX
is a pre-computed Gramian; added this.