本文主要是介绍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)
这篇关于TypeError: Expected int32, got list containing Tensors of type '_Message' instead.解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!