We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
File /opt/conda/lib/python3.10/site-packages/sagemaker/processing.py:996, in ProcessingJob._get_process_args(cls, processor, inputs, outputs, experiment_config) 993 process_request_args["environment"] = processor.env 995 if processor.network_config is not None: --> 996 process_request_args["network_config"] = processor.network_config._to_request_dict() 997 else: 998 process_request_args["network_config"] = None AttributeError: 'dict' object has no attribute '_to_request_dict'
to reproduce, use below code,
sklearn_processor.run( code='preprocessing.py', inputs=[ ProcessingInput( source=input_source, destination="/opt/ml/processing/input", s3_input_mode="File" ) ], outputs=[ ProcessingOutput( output_name="sm-immday-skprocessing", source="train", destination = 's3://path' ) ] ,kms_key='arn:aws:kms:eu-west-1:...', )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
to reproduce, use below code,
The text was updated successfully, but these errors were encountered: