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
I am seeing difference in deploy.prototxt and train_val.prototxt in FaceRecognition.
In deploy.prototxt, ReLU and InnerProduct layer is missing. What is the reason for same ?.
Following layers are available in train_val.prototxt and not available in deploy.prototxt.
This code is implemented according to DeepId paper. During training phase, they are trying to learn the Face Representation vector of dimension 160 in size by classifying a given face into one of the 10,000 classes. After training, 160 dimensional vector is used as the Face Representaion Vector or Face Embedding. So during deployment, there is no need of the last inner product layer. I hope this clears your doubt.
I am seeing difference in
deploy.prototxt
andtrain_val.prototxt
in FaceRecognition.In
deploy.prototxt
,ReLU
andInnerProduct
layer is missing. What is the reason for same ?.Following layers are available in
train_val.prototxt
and not available indeploy.prototxt
.The text was updated successfully, but these errors were encountered: