Skip to content

Instantly share code, notes, and snippets.

@mvsusp
Last active July 21, 2018 22:02
Show Gist options
  • Save mvsusp/a0e5e59729d2bb2abb1cf4c468e30282 to your computer and use it in GitHub Desktop.
Save mvsusp/a0e5e59729d2bb2abb1cf4c468e30282 to your computer and use it in GitHub Desktop.
How to host a TensorFlow or Keras model in AWS SageMaker - Building the image and testing the container
#!/usr/bin/env bash
docker build -t sagemaker-byoc-tf-serving .
#!/usr/bin/env bash
docker run --rm -it -p 8080:8080 sagemaker-byoc-tf-serving serve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment