Im new to MXNet and I was wondering if any one knows how to fine tune more layers in CNN other than only the FC layers. All the examples that Im looking at, have fine tuning only on the FC layers. In Keras this can be easily done and more blocks of ConvNets other than FC block can be fine tuned: https://github.com/Hvass-Labs/TensorFlow-Tutorials/blob/master/10_Fine-Tuning.ipynb
If we want to fine-tune only the FC block, we make all the layers trainability to false: layer.trainable = False
If we want to fine-tune more blocks of ConnNet other than FC layers, we make the layer.trainable=True for those layers: finetune blocks of ConvNet in Keras
My question is how to do similarly in MXNet