Skip to content
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

issue in CustomScript_Forecasting_Pipeline #152

Open
himanshuahlawat31 opened this issue Mar 10, 2022 · 1 comment
Open

issue in CustomScript_Forecasting_Pipeline #152

himanshuahlawat31 opened this issue Mar 10, 2022 · 1 comment

Comments

@himanshuahlawat31
Copy link

Hi we are facing issue in CustomScript_Forecasting_Pipeline the pipeline that we are running in cell 14 is getting failed .Please find the screenshot below for reference:
image

@nchandhi
Copy link

Please update the code in Step 5.2 with below code snippet to resolve the error:

from azureml.pipeline.steps import PythonScriptStep
from azureml.core.runconfig import RunConfiguration

copy_pred_runconfig = RunConfiguration()
copy_pred_runconfig.environment = forecast_env

upload_predictions_step = PythonScriptStep(
name="copy_predictions",
script_name="copy_predictions.py",
compute_target=compute,
source_directory='./scripts',
runconfig = copy_pred_runconfig,
inputs=[output_dref, output_dir],
allow_reuse=False,
arguments=['--parallel_run_step_output', output_dir,
'--output_dir', output_dref,
'--target_column', 'Quantity',
'--timestamp_column', 'WeekStarting',
'--timeseries_id_columns', 'Store', 'Brand']
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants