Skip to content
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

Add multi-processed predictions (and fitting?) to HMMClassifier #121

Closed
eonu opened this issue Dec 29, 2020 · 1 comment
Closed

Add multi-processed predictions (and fitting?) to HMMClassifier #121

eonu opened this issue Dec 29, 2020 · 1 comment

Comments

@eonu
Copy link
Owner

eonu commented Dec 29, 2020

  • Unlike the KNNClassifier, predictions for the HMMClassifier are still done on a single process, and making predictions can therefore sometimes take a while. Predictions can be multi-processed in a similar way to the KNNClassifier (splitting test data into n chunks, and assigning each chunk to its own subprocess).
  • Fitting can also take a while with a large number of GMMHMMs, so it may be worth considering multi-processing for fitting too (divide GMMHMMs into n chunks, and each of the n subprocesses is responsible for fitting the GMMHMMs in its own chunk).
@eonu
Copy link
Owner Author

eonu commented Jan 6, 2021

Implemented in #136.

@eonu eonu closed this as completed Jan 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant