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

0.x版本:數字在前,tensors在後:

tf.concat(n, tensors)

1.0及以後版本:tensors在前,數字在後:

tf.concat(tensors, n)

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章