-
Notifications
You must be signed in to change notification settings - Fork 65
[ENH] sktime integration - time series classification
#173
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
[ENH] sktime integration - time series classification
#173
Conversation
| >>> | ||
| >>> y = load_airline() | ||
| >>> | ||
| >>> sktime_exp = SktimeForecastingExperiment( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update the example so that it uses the classification.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, both the examples in the experiment, and the tuner
| best_params = optimizer.solve() | ||
|
|
||
| self.best_params_ = best_params | ||
| self.best_forecaster_ = estimator.set_params(**best_params) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be the best_classifier_?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed it to best_estimator_, since we might want to use the code later for regression and clustering
SimonBlanke
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please answer the questions in the code.
|
should be fixed now! |
Adds integration for another learning task in
sktime- time series classification.SktimeClassificationExperimentexperimentTSCOptCVTSC tuning algorithm that takes anyhyperactivetunerSince time series classification uses ordinary sklearn metrics, the
experiments.integrationcontents are refactored, moving utilities concerned withsklearnmetrics into a separate, private file_skl_metrics.