Last active
July 21, 2018 22:02
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
docker build -t sagemaker-byoc-tf-serving . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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