You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
Domenic Curro edited this page Feb 23, 2016
·
5 revisions
Borrowing Weights
What are Weights
Weights are learnable parameters in the network, which are tuned by the back propagation phase.
Who Makes the Weights?
Weights are generated by caffe when your network in constructed.
Borrowing Weights from a Pretrained Network
To borrow the weights of an already trained model, we need to do two things:
Rename our layer to match the name of the original model's layer. The weights are assigned by layer name, thus using the original network's layer name, we get it's weights.
For example, let say the original model had a layer name ip1, then we should name our layer ip1: