Hi guys,
in the "Feature maps visualization" section we got the 3rd layer of the model:
intermediate_layer = model_lenet5_v1_mnist_loaded.feature[2]
print(intermediate_layer)
But at the same time, this code throws an error:
AttributeError: 'LeNet5V1' object has no attribute 'feature'
It looks like a property should be "features". In this case, it works.
intermediate_layer = model_lenet5_v1_mnist_loaded.feature[2]
print(intermediate_layer)
Could you please check and fix it?