TensornFlow TypeError: 'method' object is not subscriptable

使用TensorFlow在对图像特征进行全连接操作时,遇到报错:“TypeError: 'method' object is not subscriptable”。

经查,是由于函数get_shape未加括号“()”,导致。

layer_fc1 = create_fc_layer(input=layer_flat, num_inputs=layer_flat.get_shape[1:4].num_elements(),
                            num_outputs=fc_layer_size, use_relu=True)

解决方法:

  1. get_shape[1:4]改成get_shape()[1:4];
  2. get_shape[1:4]改成shape[1:4]。

参考:

https://blog.csdn.net/weixin_38859557/article/details/80878298

你可能感兴趣的:(Python,TensorFlow,not,subscriptable,TypeError)