欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

TypeError: 'function' object is not subscriptable

程序员文章站 2024-01-02 11:33:58
...

在tensorflow中使用零矩阵初始化变量的时候出现的:

b = tf.Variable(tf.zeros[1])

这是由于tf.zeros是一个函数,应该有括号,所以应该改为tf.zeros([1])

像这种问题TypeError: 'function' object is not subscriptable

一般都是由于函数没加括号导致的;
 

上一篇:

下一篇: