I am working on a classification task and I want to do the work with the help of a "NeuralNetwork" classifier. There is an option to define the "NetworkDepth" by myself:
https://reference.wolfram.com/language/ref/method/NeuralNetwork.html
So the command my look like:
nn = Classify[trainSet, Method -> {"NeuralNetwork", "NetworkDepth" -> 6, ...
Later on I want to know how the Neural Networks looks like, so what kind of layers are applied. What is the sequence of the layers and so forth. How can I get these informations?