预期的二进制或Unicode字符串,得到数组

时间:2019-08-11 06:18:51

标签: python tensorflow neural-network numpy-ndarray

我正在尝试使用自己的图像数据集进行预测,因此我将numpy数组转换为标准TensorFlow格式,但它给了我以下错误

  

期望的二进制或Unicode字符串,得到了数组([[[[126,115,117],           [132,118,121],           [121,106,109],

以下是我的代码

def my_func(arg):
  arg = tf.convert_to_tensor(arg, dtype=tf.float32)
  return tf.matmul(arg, arg) + arg


training_data= my_func(tf.constant(training_data[::]))  

我在张量流中忽略了这个tutorial,但找不到解决方案。

0 个答案:

没有答案