-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Description
System Information
- Python Version: 3.6
- CPU or GPU: CPU
- Python SDK Version: Anaconda
Describe the problem
I'm quite new to the SageMaker algorithms and estimators so please bear with me.
I'm running a script very similar to this example script for DeepAR
https://github.com/awslabs/amazon-sagemaker-examples/blob/master/introduction_to_amazon_algorithms/deepar_electricity/DeepAR-Electricity.ipynb
And want to start more than hundred of such training + prediction jobs.
The cell
predictor = estimator.deploy(
initial_instance_count=1,
instance_type='ml.m4.xlarge',
predictor_cls=DeepARPredictor)
takes up 70% (~8.5min) of the time of the overall training and predicting job (~12min). Is there a possibility to reduce that time? What is the reason for this deploy job taking so long?
Thanks!
NotSoShaby, EHadoux, ihayet, Squinelato and DFranch