tf.TensorSpec(shape=[None , None , 3] , tf.float32)
^ SyntaxError: positional argument follows keyword argumentCorrect :
tf.TensorSpec(shape=[None , None , 3] , dtype= tf.float32)
tf.TensorSpec(shape=[None , None , 3] , tf.float32)
^ SyntaxError: positional argument follows keyword argumentIn Kubernetes, Workloads are the applications you run on the cluster, while Controllers are the background control loops that watch the st...
No comments:
Post a Comment