با سلام واحترام؛
من چند تصویر رنگی با سایز 20*20 دارم......که لیبل های من 3 هست یعنی خروجی سه کلاسه خواهد بود....در برنامه زیر
https://pastebin.com/TpU7ksgN
img_size = 20203
x = tf.placeholder(tf.float64, [None, img_size])
W = tf.Variable(tf.zeros([img_size, 3]))
b = tf.Variable(tf.zeros([3]))
y = tf.nn.softmax(tf.matmul(x, W) + b)
y_ = tf.placeholder(tf.float64, [None, 3])
با خطای
Input 'b' of 'MatMul' Op has type float32 that does not match type float64 of argument 'a'.
روبه رو شدم.درصورت امکان راهنمایی بفرمایید.