Reputation: 1012
I want to run my code in notebook instance on AWS Sagemaker. My instance is ml.m5.4xlarge
But if I just import TensorFlow in standard way it, then TensorFlow on GPU is not available(only CPU is used):
import tensorflow as tf
tf.config.list_physical_devices('GPU')
['']
What should I do in order to use GPUs for tensorflow?
P.S to be clear I don't need to deploy anything. I just want to train my model using notebook instance(for Kaggle competition)
EDIT: I have used conda_tensorflow2_p36 notebook
Upvotes: 0
Views: 2304