
人脸识别
cytheria43
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
facenet生成自己的pairs.txt
# _*_ coding:utf-8 _*_ import os import random import argparse import sys class GeneratePairs: """ Generate the pairs.txt file for applying "validate on LFW" on your own datasets. """ ...原创 2019-12-16 12:04:51 · 1765 阅读 · 1 评论 -
使用VGG_Face模型进行人脸识别时出现的bug: KeyError: 'fc7'
def compar_pic(path1,path2): global net #加载验证图片 X=read_image(path1) test_num=np.shape(X)[0] #X 作为 模型的输入 #out = net.forward_all(data = X) 这里改为下行,增加blobs=['fc7'],可避免报错 out...原创 2019-07-19 15:14:24 · 1068 阅读 · 0 评论 -
运行tensorflow以及caffe出现各种虽小但足以致命的错误
【1】ValueError:tensorflow.python.framework.errors_impl.unKnownerror exception str() failed feed_dict = {images_placeholder: images, phase_train_placeholder: False} emb_array=sess.run(embeddin...原创 2019-08-21 10:03:57 · 339 阅读 · 2 评论