You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ _Put an `x` in the boxes that apply. You can also fill these out after creating
12
12
13
13
-[ ] I have read the [CONTRIBUTING](https://github.com/aws/sagemaker-python-sdk/blob/master/CONTRIBUTING.md) doc
14
14
-[ ] I used the commit message format described in [CONTRIBUTING](https://github.com/aws/sagemaker-python-sdk/blob/master/CONTRIBUTING.md#committing-your-change)
15
-
-[ ] I have passed the region in to any/all clients that I've initialized as part of this change.
15
+
-[ ] I have passed the region in to all S3 and STS clients that I've initialized as part of this change.
16
16
-[ ] I have updated any necessary documentation, including [READMEs](https://github.com/aws/sagemaker-python-sdk/blob/master/README.rst) and [API docs](https://github.com/aws/sagemaker-python-sdk/tree/master/doc) (if appropriate)
Amazon SageMaker Processing allows you to run steps for data pre- or post-processing, feature engineering, data validation, or model evaluation workloads on Amazon SageMaker.
@@ -24,76 +24,85 @@ The fastest way to run get started with Amazon SageMaker Processing is by runnin
24
24
You can run notebooks on Amazon SageMaker that demonstrate end-to-end examples of using processing jobs to perform data pre-processing, feature engineering and model evaluation steps. See `Learn More`_ at the bottom of this page for more in-depth information.
25
25
26
26
27
-
Data Pre-Processing and Model Evaluation with Scikit-Learn
Then you can run a Scikit-Learn script ``preprocessing.py`` in a processing job. In this example, our script takes one input from S3 and one command-line argument, processes the data, then splits the data into two datasets for output. When the job is finished, we can retrive the output from S3.
45
+
Then you can run a scikit-learn script ``preprocessing.py`` in a processing job. In this example, our script takes one input from S3 and one command-line argument, processes the data, then splits the data into two datasets for output. When the job is finished, we can retrive the output from S3.
46
46
47
47
.. code:: python
48
48
49
49
from sagemaker.processing import ProcessingInput, ProcessingOutput
For an in-depth look, please see the `Scikit-Learn Data Processing and Model Evaluation`_ example notebook.
65
+
For an in-depth look, please see the `Scikit-learn Data Processing and Model Evaluation`_ example notebook.
65
66
66
-
.. _Scikit-Learn Data Processing and Model Evaluation: https://github.com/awslabs/amazon-sagemaker-examples/blob/master/sagemaker_processing/scikit_learn_data_processing_and_model_evaluation/scikit_learn_data_processing_and_model_evaluation.ipynb
67
+
.. _Scikit-learn Data Processing and Model Evaluation: https://github.com/awslabs/amazon-sagemaker-examples/blob/master/sagemaker_processing/scikit_learn_data_processing_and_model_evaluation/scikit_learn_data_processing_and_model_evaluation.ipynb
67
68
68
69
69
70
Data Pre-Processing with Spark
70
71
==============================
71
72
72
-
You can use the `ScriptProcessor`_ class to run a script in a processing container, including your own container.
You can use the :class:`sagemaker.processing.ScriptProcessor` class to run a script in a processing container, including your own container.
75
74
76
75
This example shows how you can run a processing job inside of a container that can run a Spark script called ``preprocess.py`` by invoking a command ``/opt/program/submit`` inside the container.
77
76
78
77
.. code:: python
79
78
80
79
from sagemaker.processing import ScriptProcessor, ProcessingInput
0 commit comments