Google News
logo
Keras - Quiz(MCQ)
Which of the following returns all the layers of the model as list?
A)
model.layers
B)
model.inputs
C)
model.outputs
D)
model.get_weights

Correct Answer :   model.layers


Explanation : model.layers : Returns all the layers of the model as list.

Advertisement