正文调用tensorflow中的concat方法时Expected int32, got list containing Tensors of type '_Message' instead.IP云V管理员/2022-09-08/3 阅读 09/08提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 grid = tf.concat(0, [x_t_flat, y_t_flat, ones])#报错语句grid = tf.concat( [x_t_flat, y_t_flat, ones],0) #楼主改后的代码将数字放在后面,如果有三个参数 decoder_inputs = tf.concat([go_inputs, decoder_inputs_tmp], 1,name="dec_in")