Closed dzisandy closed 4 years ago
Thanks, that’s a good datapoint to know!
On Tue, Mar 26, 2019 at 8:25 AM Andrei Dzis notifications@github.com wrote:
Closed #10 https://github.com/rois-codh/kmnist/issues/10.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rois-codh/kmnist/issues/10#event-2228155951, or mute the thread https://github.com/notifications/unsubscribe-auth/AGBoHlSaYoK1E5J_aVbVI3pW5nCGBo2vks5vaVr2gaJpZM4cJ4xh .
Added, it would be good to also have data points for MNIST and K-49
@mxbi Thanks for credit!
See also #13 for K-49 and MNIST code/details
Adding PCA dimension reduction produces better Test Accuracy
x_train = x_train.reshape(-1, 784)
x_test = x_test.reshape(-1, 784)
After this code rows:pca = PCA(n_components= 60, random_state= 0 )
x_train = pca.fit_transform(x_train)
x_test = pca.transform(x_test)
The resulting isTest accuracy: 0.9398