TRANSFER learning vs fine tuning
Transfer learning is about “transferring” the learnt representations to another problem. For example one can use features from a pre-trained convolutional neural network (convNet) to power a linear support vector machine (SVM). In such a case the pre-trained model can be held fixed while the linear SVM weights can be updated. Fine tuning on the other hand is just about making some fine adjustments to further improve performance. For example, during transfer learning, you can unfreeze the pre-trained model and let it adapt more to the task at hand. Thus Transfer learning Is about projecting all new inputs through a pre-trained model. Like if we have a pre-trained model function http://www.w3.org/1998/Math/MathML "><mi>f</mi><mo stretchy="false">(</mo><mo stretchy="false">)</mo></math>"> f ( ) f() and wish to learn a new function http://www.w3.org/1998/Math/MathML "><mi>g</mi><mo str...