You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sklearn defines a precomputed option SVM's kernel parameter. In this case, instead of passing the training vectors, we pass the Gram matrix that contains kernel values between all training examples.
This can be considered as a big kernel cache which is initialized by the user, and could be implemented by adapting the KernelCache class accordingly.
The text was updated successfully, but these errors were encountered:
Sklearn defines a
precomputed
option SVM'skernel
parameter. In this case, instead of passing the training vectors, we pass the Gram matrix that contains kernel values between all training examples.This can be considered as a big kernel cache which is initialized by the user, and could be implemented by adapting the KernelCache class accordingly.
The text was updated successfully, but these errors were encountered: