Skip to content

Instantly share code, notes, and snippets.

View s4nyam's full-sized avatar
:octocat:
Do Git! Go Green!✅

s4nyam s4nyam

:octocat:
Do Git! Go Green!✅
View GitHub Profile
@s4nyam
s4nyam / DeepLearningFaces.md
Created October 16, 2016 07:02 — forked from jdsgomes/DeepLearningFaces.md
Deep Learning for Face Recognition

Deep Learning for Face Recognition (May 2016)

Popular architectures

  • FaceNet (Google)
    • They use a triplet loss with the goal of keeping the L2 intra-class distances low and inter-class distances high
  • DeepID (Hong Kong University)
    • They use verification and identification signals to train the network. Afer each convolutional layer there is an identity layer connected to the supervisory signals in order to train each layer closely (on top of normal backprop)
  • DeepFace (Facebook)
    • Convs followed by locally connected, followed by fully connected
@s4nyam
s4nyam / fr
Created October 16, 2016 07:01 — forked from vishvanand/fr
# import the necessary packages
import argparse
import datetime
import imutils
import time
import cv2
from facerec.feature import Fisherfaces
from facerec.classifier import NearestNeighbor
from facerec.model import PredictableModel