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
And the /opt/ml/... filepaths determine where resources exist in the container and need to be correctly handled in our processing/training code.
There are other locations similar to this for training and tuning and there are environment variables that can control the default locations where resources are expected to be inside the local container.
To keep consistency across our SageMaker projects we usually end up defining a basic class or an Enum in a config file. This helps avoid things like typos and allows users to keep consistent conventions between projects.
Something like a class or Enum that define the most commonly used locations could be helpful for new users to SageMaker and prevent users from having to reference documentation (which can sometimes be a little scattered) to remember the conventional locations.
How would this feature be used? Please describe.
This feature would help standardize some of these common locations and provide IDE code-completion support for common
parameters when working in SageMaker.
Describe alternatives you've considered
We currently use a config that does this and use a cookie cutter template to initialize the SageMaker datascience projects to help promote uniformity across teams.
The text was updated successfully, but these errors were encountered:
Describe the feature you'd like
When working with SageMaker we are often defining sources and destinations for data and artifacts within our jobs.
For instance a ProcessingInput for a processing job will be defined like:
and an output would be defined like:
And the
/opt/ml/...
filepaths determine where resources exist in the container and need to be correctly handled in our processing/training code.There are other locations similar to this for training and tuning and there are environment variables that can control the default locations where resources are expected to be inside the local container.
To keep consistency across our SageMaker projects we usually end up defining a basic class or an Enum in a config file. This helps avoid things like typos and allows users to keep consistent conventions between projects.
Something like a class or Enum that define the most commonly used locations could be helpful for new users to SageMaker and prevent users from having to reference documentation (which can sometimes be a little scattered) to remember the conventional locations.
For example:
How would this feature be used? Please describe.
This feature would help standardize some of these common locations and provide IDE code-completion support for common
parameters when working in SageMaker.
Now our processing inputs and outputs would be:
Describe alternatives you've considered
We currently use a config that does this and use a cookie cutter template to initialize the SageMaker datascience projects to help promote uniformity across teams.
The text was updated successfully, but these errors were encountered: