abc
abc

Reputation: 87

Hosting multiple models for multiple datasets in aws sagemaker

I read that there is a way to train and host multiple models using a single endpoint for a single dataset in AWS Sagemaker. But I have 2 different datasets in S3 and have to train a model for each dataset. Can these 2 different models be hosted using a single endpoint?

Upvotes: 0

Views: 625

Answers (1)

Julien Simon
Julien Simon

Reputation: 2729

Yes, this is called a multi-model endpoint. You can use a large number of models on the same endpoint. They get loaded and unloaded dynamically as needed, and you simply have to pass the model name in your prediction request.

Here are some resources:

Upvotes: 1

Related Questions