A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources with infrastructure-as-code.
—
Quality
Pending
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Amazon SageMaker is a fully managed machine learning service.
Build and train ML models.
See SageMaker Documentation for detailed documentation.
const notebook = new aws.sagemaker.NotebookInstance("ml-notebook", {
name: "development",
roleArn: role.arn,
instanceType: "ml.t3.medium",
});const trainingJob = new aws.sagemaker.TrainingJob("training", {
name: "model-training",
roleArn: role.arn,
algorithmSpecification: {
trainingImage: "image",
trainingInputMode: "File",
},
});const model = new aws.sagemaker.Model("model", {
name: "prediction-model",
executionRoleArn: role.arn,
primaryContainer: {
image: "model-image",
},
});
const endpoint = new aws.sagemaker.Endpoint("inference", {
name: "inference-endpoint",
endpointConfigName: config.name,
});Install with Tessl CLI
npx tessl i tessl/npm-pulumi--aws@7.16.0