当我的图表如下时,它将无法量化,错误信息断言错误:无法量化类型的常量ones_1
x = tf.ones((1000,1),'int32')
*ones = tf.ones((1, 100), "int32")*
x = tf.reshape(x, shape=(-1,1))
当我将图形更改为以下内容时,它可以正常工作:
x = tf.ones((1000,1),'int32')
***ones = tf.ones((1, 100), "int32")
ones = tf.reshape(ones, shape=(1,-1))***
x = tf.reshape(x, shape=(-1,1))