We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
moseq2_app.flip.flip_classifier_tool.train_and_evaluate_model() trains on cleaned frames, whereas moseq2_extract.extract.proc.get_flips() performs inference on uncleaned frames.
moseq2_app.flip.flip_classifier_tool.train_and_evaluate_model()
moseq2_extract.extract.proc.get_flips()
RF Flip classifiers should perform inference on the same type of frames (cleaned or uncleaned) they are trained on.
RF Flip classifiers perform inference on uncleaned frames, while being trained on cleaned frames.
Depends on how the default flip classifiers were trained.
self.corrected_dataset
self.x
The text was updated successfully, but these errors were encountered:
The kernel size for the tail filter is also hardcoded, and should instead be defined by the user (and ideally passed from the config file).
fixed with c84e1cd
Sorry, something went wrong.
fixed with dattalab/moseq2-extract@ddb41c6
allow users to define all cleaning parameters used, ideally these would just be called from the config file in the notebook example 94545e7
cleaning params implemented in notebook 78a698d
No branches or pull requests
moseq2_app.flip.flip_classifier_tool.train_and_evaluate_model()
trains on cleaned frames, whereasmoseq2_extract.extract.proc.get_flips()
performs inference on uncleaned frames.Expected Behavior
RF Flip classifiers should perform inference on the same type of frames (cleaned or uncleaned) they are trained on.
Current Behavior
RF Flip classifiers perform inference on uncleaned frames, while being trained on cleaned frames.
Possible Solution
Depends on how the default flip classifiers were trained.
Steps to Reproduce (for bugs)
self.corrected_dataset
is cleaned frames and is later used asself.x
in training functionScreenshots
Context
Your Environment
The text was updated successfully, but these errors were encountered: