SphereFace icon indicating copy to clipboard operation
SphereFace copied to clipboard

🍑 TensorFlow Code for CVPR 2017 paper "SphereFace: Deep Hypersphere Embedding for Face Recognition"

Results 3 SphereFace issues
Sort by recently updated
recently updated
newest added

I cannot run it successfully, and it seems that this is caused by changes in tensorflow. Could you tell me your version?Thanks!

hello, I am a bit of confuse about reading this code about calculating A-softloss

since cos(4\theta )=8cos^4\theta-8cos^2\theta+2 why do i care the sign of cos\theta? thanks ``` cos_theta = tf.div(selected_logits, embeddings_norm) cos_theta_power = tf.square(cos_theta) cos_theta_biq = tf.pow(cos_theta, 4) sign0 = tf.sign(cos_theta) sign3 = tf.multiply(tf.sign(2*cos_theta_power-1),...