Код: Выделить всё
matrix1 = tf.constant([[3., 3.]])
matrix2 = tf.constant([[2.],[2.]])
product = tf.matmul(matrix1, matrix2)
Код: Выделить всё
Следующее не помогает :
Код: Выделить всё
print product
Tensor("MatMul:0", shape=TensorShape([Dimension(1), Dimension(1)]), dtype=float32)
Подробнее здесь: https://stackoverflow.com/questions/336 ... tensorflow