TypeError: Expected int32, got list containing Tensors of type '_Message' instead.解决方法

来源:互联网 发布:最短路径的算法 编辑:程序博客网 时间:2024/06/10 23:49

0.x版本:数字在前,tensors在后:

tf.concat(n, tensors)

1.0及以后版本:tensors在前,数字在后:

tf.concat(tensors, n)

阅读全文
0 0
原创粉丝点击