-
Notifications
You must be signed in to change notification settings - Fork 89
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
Estimator Output Path cannot accept Execution Input placeholder #85
Comments
Same issue with |
For instance, how do we do something like this using the
|
Hi @jackmuskopf, thank you for your feature request!
Support to use placeholders with ProcessingStep has been merged and will be added with the next release (see commit) The DataScience SDK does not currently support StepFunctions Intrinsic Functions, but with this change, it will possible to configure any property in the For example:
|
Hi @jackmuskopf, Support for placeholders for Tuning was added with #173. Changes will be included in the the next release |
The arguments of
sagemaker.estimator.Estimator()
andsagemaker.tuner.HyperparameterTuner()
doesn't acceptExecutionInput
orStepInput
as placeholder. E.g. for theoutput_path
ofsagemaker.estimator.Estimator()
has to be fixed in the definition of workflow.The current way around this is not to make use of
stepfunctions.steps.sagemaker.TuningStep
and use the genericstep functions.steps.Task
to invoke thearn:aws:states:::sagemaker:createHyperParameterTuningJob.sync
with parameters from ExecutionInput and StepInputThe text was updated successfully, but these errors were encountered: