-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve NCH with a better strategy on samples selection #254
Comments
Using the closest covmats to the test sample:
With 20 covmats per class/hull and SlsqpOptimizer. =========================================================
with n_samples_per_hull=5 =========================================================
with:
|
Implemented in #253 . |
Here is another result:
Using:
As this has Random hull probably varies on each run, but in general it gives better performance currently. But it is worth mentioning that min-hull uses 10 samples and random-hull uses 3 x 10 = 30. |
Quantum = True using Cobyla optimizer, 3 subjects |
|
|
|
Before understanding the impact of subsampling strategies on quantum NCH, |
Ok, we may try this. But this will take maybe one week or two to get the results. |
We have this result that I did on 13/03. It was non-quantum:
|
Current strategy:
Using random samples for the hulls.
Closest n matrices :
For each class we calculate the closest n (n=10) matrices to the test sample. This will be done using distance_logeuclid() from pyriemann. Next we use these n + n matrices to calculate again 2 distances using qdistance_logeuclid_to_convex_hull(). The shorter distance predicts the class.
The text was updated successfully, but these errors were encountered: