Hi, I was hoping to extend the create_transform function in the DeepAR estimator, is there anyway to do this? I haven't found the extended tutorial showing how even though it shows you how to define a transformation.
hoping to add simple rolling averages etc.
Hey @Worulz, you could extend the DeepAREstimator and overwrite create_transformation with your custom transformation:
class MyEstimator(DeepAREstimator):
def create_transformation(self) -> Transformation:
# your custom transformation
pass
Does that help you?
@PascalIversen thank you! I'll play around with it.
Most helpful comment
Hey @Worulz, you could extend the
DeepAREstimatorand overwritecreate_transformationwith your custom transformation:Does that help you?