'Tensor' object has no attribute 'lower'

夙愿已清 提交于 2020-05-23 08:14:24

问题


I am fine-tuning a MobileNet with 14 new classes. When I add new layers by:

x=mobile.layers[-6].output
x=Flatten(x)
predictions = Dense(14, activation='softmax')(x)
model = Model(inputs=mobile.input, outputs=predictions)

I get the error:

'Tensor' object has no attribute 'lower'

Also using:

model.compile(Adam(lr=.0001), loss='categorical_crossentropy', metrics=['accuracy'])
model.fit_generator(train_batches, steps_per_epoch=18,
                validation_data=valid_batches, validation_steps=3, epochs=60, verbose=2)

I get the error:

Error when checking target: expected dense_1 to have 4 dimensions, but got array with shape (10, 14)

What does lower mean? I saw other fine-tuning scripts and there were no other arguments other than the name of the model which is x in this case.


回答1:


The tensor must be passed to the layer when you are calling it, and not as an argument. Therefore it must be like this:

x = Flatten()(x)  # first the layer is constructed and then it is called on x

To make it more clear, it is equivalent to this:

flatten_layer = Flatten()  # instantiate the layer
x = flatten_layer(x)       # call it on the given tensor


来源:https://stackoverflow.com/questions/53153790/tensor-object-has-no-attribute-lower

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!