Skip to content

Commit

Permalink
fixing sagemaker (#3380)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdurak authored Feb 26, 2025
1 parent 3d484c2 commit f16e28a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,10 @@ def prepare_or_run_pipeline(

# Convert environment to a dict of strings
environment = {
key: str(value) for key, value in environment.items()
key: str(value)
if not isinstance(value, ExecutionVariables)
else value
for key, value in environment.items()
}

if use_training_step:
Expand Down

0 comments on commit f16e28a

Please sign in to comment.