I have the following code:
_X = np.arange(1, 7).reshape((2, 3))
_Y = np.arange(1, 7).reshape((3, 2))
X = tf.convert_to_tensor(_X)
Y = tf.convert_to_tensor(_Y)
# Matrix multiplication
out1 = tf.matmul(X, Y)
For it, I am getting this error:
TypeError: Value passed to parameter 'a' has DataType int64 not in list of allowed values: float16, float32, float64, int32, complex64, complex128
I am using the latest version of Tensorflow. What could be the issue?
Inputs to tf.matmul accepts only these dtypes :
a: Tensor of type float16, float32, float64, int32, complex64, complex128 and rank > 1.
Changing dtype of X and Y to above dtypes works.
import tensorflow as tf
import numpy as np
_X = np.arange(1, 7).reshape((2, 3))
_Y = np.arange(1, 7).reshape((3, 2))
X = tf.convert_to_tensor(_X,dtype=tf.int32)
Y = tf.convert_to_tensor(_Y,dtype=tf.int32)
# Matrix multiplication
out1 = tf.matmul(X, Y)
sess = tf.Session()
print(sess.run(out1))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With