kfda
kfda copied to clipboard
Kernel Fisher Discriminant Analysis implementation following https://arxiv.org/abs/1906.09436
problem
cls = Kfda(kernel='rbf', n_components=3) clf = cls.fit_transform(X_train, y_train) TypeError: np.matrix is not supported. Please convert to a numpy array with np.asarray. Although I have converted the data to np.array, he...
Title: Update KFDA implementation to address deprecated features and numerical stability issues Description: This PR updates the Kernel Fisher Discriminant Analysis (KFDA) implementation to address several issues: 1. Fixes deprecated...