對於在python中使用tensorflow的softmax迴歸程序,我想將我的1000個jpeg圖像文件作爲2D張量x:[image index,pixel index]。 「圖像索引」是圖像,像素索引是該圖像的特定圖像像素。 模型等式是:在張量流中獲取多個圖像文件作爲二維張量
y = tf.nn.softmax(tf.matmul(x, W) + b)
where:
x = tf.placeholder(tf.float32, [None, image_size])
W = tf.Variable(tf.zeros([image_size, classes]))
b = tf.Variable(tf.zeros([classes]))
圖像尺寸=高*圖像的寬度(常數所有圖片)。
張量傳遞中獲得圖像文件的最佳方式是什麼?