本文整理匯總了Python中facenet.triplet_loss方法的典型用法代碼示例。如果您正苦於以下問題:Python facenet.triplet_loss方法的具體用法?Python facenet.triplet_loss怎麽用?Python facenet.triplet_loss使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類facenet
的用法示例。
在下文中一共展示了facenet.triplet_loss方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: testDemuxEmbeddings
# 需要導入模塊: import facenet [as 別名]
# 或者: from facenet import triplet_loss [as 別名]
def testDemuxEmbeddings(self):
batch_size = 3*12
embedding_size = 16
alpha = 0.2
with tf.Graph().as_default():
embeddings = tf.placeholder(tf.float64, shape=(batch_size, embedding_size), name='embeddings')
anchor, positive, negative = tf.unstack(tf.reshape(embeddings, [-1,3,embedding_size]), 3, 1)
triplet_loss = facenet.triplet_loss(anchor, positive, negative, alpha)
sess = tf.Session()
with sess.as_default():
np.random.seed(seed=666)
emb = np.random.uniform(size=(batch_size, embedding_size))
tf_triplet_loss = sess.run(triplet_loss, feed_dict={embeddings:emb})
pos_dist_sqr = np.sum(np.square(emb[0::3,:]-emb[1::3,:]),1)
neg_dist_sqr = np.sum(np.square(emb[0::3,:]-emb[2::3,:]),1)
np_triplet_loss = np.mean(np.maximum(0.0, pos_dist_sqr - neg_dist_sqr + alpha))
np.testing.assert_almost_equal(tf_triplet_loss, np_triplet_loss, decimal=5, err_msg='Triplet loss is incorrect')