现在,我遵循project,其中第18行代码适合模型。
我想提取该神经网络的最后一个输出。具体来说,我想在code的第53行中提取“ conv10”。
我尝试输入:model.outputs。但是,不知道这是真的还是什么。
答案 0 :(得分:1)
为了提取网络中特定层的输出,您可以执行以下操作:
x = model.layers[N].output #will extract the N layer's output
因此,如果要输出最后一个:
x = model.layers[-1].output