I have a python script which I wrote using tensorflow python 3.6 AWS sagemaker jupyter notebook inside AWS sagemaker instance. I have to use sagemaker debugger for my Deep Learning model. I can see many links suggesting that first dockerise the algorithm image and then use it over sagemaker. Can anyone please suggest that is there any available alternative such that Tensorflow-1 docker image is available and I can include some other packages via pip in this image and then run my model on sagemaker ? I am using keras 2.3.0 with tensorflow 1.15 .Please guide and share necessary references.
Customising model in AWS sagemaker
269 Views Asked by Shubham_geo At
1
There are 1 best solutions below
Related Questions in PYTHON-3.X
- Update a text file with ( new words+ \n ) after the words is appended into a list
- Kivy - Create new widget and set its position and size
- TypeError: encoding or errors without a string argument
- How to print varible name in python
- PyQt, Python 3: Lambda slot assigning signal argument to a variable?
- How to write data to stdin of the first process in a Python shell pipeline?
- pygame.draw.circle, still draws a square
- Duplicate Frames Created When Calling a Function in a Tkinter Application
- Python TypeError: can only concatenate tuple (not "int") to tuple
- recursively editing member variable: All instances have same value
- missing 1 required positional argument: 'key'
- How do I fix this sorting error?
- Dictionary values missing
- Why does opening a file in two different encodings work as expected?
- Binary bit flip generator in python
Related Questions in DOCKER
- Docker, redirecting to virtualbox port
- Collect only from STDERR when using Docker syslog logging driver
- How can I create a docker image from the current system?
- Moving Docker Containers Around
- How can I test with serverspec that Jenkins is running in a jenkins docker container?
- How to deploy django 1.8 on Elastic Beanstalk using Docker
- Emulating `docker run` using the golang docker API
- Where are docker images and containers stored when we use it with Windows?
- docker compose, vagrant and insecure Repository
- Commit data in a mysql container
- oh-my-zsh installation returns non zero code
- Use custom docker binary in CoreOS
- Can I use docker image ubuntu 14.04 if my host is 12.04?
- Hide/obfuscate environmental parameters in docker
- How to add initial users when starting a RabbitMQ Docker container?
Related Questions in AMAZON-SAGEMAKER
- Getting an anomaly score for every datapoint in SageMaker?
- Load Amazon Sagemaker NTM model locally for inference
- Train autoencoder in script mode on AWS sagemaker
- Update a Sagemaker Endpoint when changing the docker image
- Custom package installation from S3 in sagemaker
- How best to install dependencies in a Sagemaker PySpark cluster
- Load Python Pickle File from S3 Bucket to Sagemaker Notebook
- Load Snowflake data into Pandas dataframe using AWS Sagemaker
- AWS Sagemaker + AWS Lambda
- Pyathena is super slow compared to querying from Athena
- How can I deploy a re-trained Sagemaker model to an endpoint?
- ‘precision_at_target_recall’, ‘recall_at_target_precision’ on hyper parameters on AWS SageMaker , how does it train with that constraint?
- Why is Crowd HTML breaking this image?
- OCI runtime create failed: container_linux.go:349: starting container process caused on sagemaker
- How to upload packages to an instance in a Processing step in Sagemaker?
Related Questions in KERAS-2
- How to use TensorFlow metrics in Keras
- Keras: weighted binary crossentropy
- What causes high top_k_categorical_accuracy but low categorical_accuracy in Keras
- how to split up tf.data.Dataset into x_train, y_train, x_test, y_test for keras
- AttributeError: module 'keras.backend' has no attribute 'common'
- How to update a model.json saved in keras 1.1.0 to latest (tensorflow 2.3.1)?
- Is this possible with tf.tensor_scatter_nd_add
- Customising model in AWS sagemaker
- Keras kernel_initializer must either be wrapped in an init_scope or callable error
- Regression with Keras API not giving consistent result
- Cannot `import name '_Merge' from 'keras.layers.merge`' in Tensorflow2
- why my below modified vgg-16 Keras model takes 1 hour to run one epoch
- @property: AttributeError: can't set attribute
- Getting keras ValueError during fitting of the model(loss and losses keyword issue)
- restore_best_weights issue keras early stopping
Related Questions in TENSORFLOW1.15
- How to set layer weights during training tensorflow
- Customising model in AWS sagemaker
- tensorflow v1 GradientTape: AttributeError: 'NoneType' object has no attribute 'eval'
- AttributeError: module 'object_detection.utils.config_util' has no attribute 'update_fine_tune_checkpoint_type'
- Logistic Regression Cifar10- image classification using tensorflow 1.x
- How to reuse a computation graph with different inputs?
- (Tensorflow 1.14) Not able to convert saved_model.pb and variables in to frozen_inference_graph.pb
- tensorflow 1.14, ValueError: No variables to optimize
- batch size > 1 gives an error using TensorFlow 1.x
- protoc can't be installed : not find a version that satisfies the requirement protoc
- load model saved by tensorflow v1 using keras or tensorflow v2
- Batching in Tensorflow1 and Tensorflow2
- I need to install Tensor Flow 1?
- RuntimeError: `loss` passed to Optimizer.compute_gradients should be a function when eager execution is enabled. Working with Tensorflow 1.15
- How to convert TensorFlow checkpoint files to TensorFlowJS?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You don't have to dockerize your code yourself, you can use an existing SageMaker TensorFlow image, and with the SageMaker Python SDK you can let SageMaker manipulate docker images for you - no docker knowledge needed ! This documentation explains how to launch your own TF code on SageMaker Training or SageMaker Hosting. You can add a
requirements.txtfile to bring extra dependencies