Hello,
when a network has been defined, I can use network->getLayer(3) which return type is ILayer to get a specific layer. If the layer is a Activation layer, how can I get the activationtype of the layer?
thanks in advance for any help.
sample code:
layer = network->getLayer(3);
std::cout << layer->getName() << static_cast(layer->getType())<< std::endl;