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")

相关文章:

  • 2021-08-23
  • 2021-06-12
  • 2021-05-24
  • 2022-12-23
  • 2021-08-05
  • 2022-12-23
  • 2021-09-05
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-26
  • 2021-11-11
  • 2022-01-22
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案