Tensor(“ args_0:0”,shape =(28,28,1),dtype = float32)

时间:2019-10-15 09:07:41

标签: tensorflow python-3.6 tensorflow-serving

出于学习目的,我试图在Google Colab中执行以下代码。执行以下代码时收到此消息。

Tensor(“ args_0:0”,shape =(28,28,1),dtype = float32)

def normalize(images, labels):
  print(images)

  images = tf.cast(images, tf.float32)
  print(images)

  images /= 255
  print(images)


  return images, labels

我正在尝试了解此消息的含义,但我无法理解。尝试在网络中搜索,但找不到太多资源。谁能说出这句话的意思?

1 个答案:

答案 0 :(得分:0)

此输出表示您的图像是形状为(28,28,1)的张量,并且键入float32中的(28,28,1)中的1是gray-scale的单个字节,表示您具有灰度图片(基于您的代码)