tf.constant(tf.random_normal([time_step,batch_size],-1,1))
我得到TypeError:预期单个Tensor时的张量列表.你能告诉我代码有什么问题吗?
本质上,tf.constant()将NumPy数组作为参数或某种数组或仅作为值.
tf.random_normal()返回一个Tensor,它不能是tf.constant()的参数.
要解决此问题,请使用tf.Variable()而不是tf.constant().
请参阅链接中的答案.这个人解释得更好.