I want to deploy a stacked model to Azure Machine Learning Service. The architecture of the solution consists of three models and one meta-model. Data is a time-series data.
I'd like the model to automatically re-train based on some schedule. I'd also like to re-tune hyperparameters during each re-training.
AML Service offers HyperDriveStep
class that can be used in the pipeline for automatic hyperparameter optimization.
Is it possible - and if so, how to do it - to use HyperDriveStep
with time-series CV?
I checked the documentation, but haven't found a satisfying answer.