L Xandor
L Xandor

Reputation: 1841

Creating Sagemaker training job with terraform?

I am new to terraform and was looking through the documentation. From what I can tell, there's nothing in terraform with regards to create a training job that has the model artifacts. Does this mean I can't use terraform to set up the full sagemaker pipeline? It seems to me you would have to first create the training job in some way, and then you can use terraform to create a model enpoint that uses what is there (but you can't do the training job itself with terraform).

Upvotes: 4

Views: 1816

Answers (1)

Julien Simon
Julien Simon

Reputation: 2729

Neither CloudFormation nor Terraform support SageMaker training. Have you looked at Apache Airflow? It's nicely integrated with SageMaker and lets you build end-to-end pipelines:

https://aws.amazon.com/blogs/machine-learning/build-end-to-end-machine-learning-workflows-with-amazon-sagemaker-and-apache-airflow/

Upvotes: 1

Related Questions