Is Wasserstein Discriminant Analysis usable for non-toy datasets? #725
Unanswered
dherrera1911
asked this question in
Q&A
Replies: 1 comment
-
Hello this is a good question. The WDA paper was originally implemented in Matlab with all gradient computation done by hand and was quite optimized. The implementation in POT is a rewrite using autograd but was not tested on the experiments form the paper. It does not scale that well to large dataset (maybe we should implement an SGD on stiefel...) but in any case i suggest that you use parameters |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to use the Wasserstein Discriminant Analysis implementation of POT, shown here https://pythonot.github.io/auto_examples/others/plot_WDA.html
I can reproduce the example in the link above with no problem. However, when I tried to apply the WDA implementation to MNIST, it doesn't complete any iterations and then the process is killed. In the original paper the authors use the method for MNIST, and report a low training time. So, I was wondering, whether this implementation is known not to work for larger scale data, or if I am missing something.
Code to reproduce below:
Beta Was this translation helpful? Give feedback.
All reactions