Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/chen0040/keras-face
/ functions
Functions
59 in github.com/chen0040/keras-face
⨍
Functions
59
◇
Types & classes
2
↓ 38 callers
Method
img_to_encoding
(self, image_path)
keras_face/library/siamese.py:50
↓ 24 callers
Method
img_to_encoding
(self, image_path)
keras_face/library/face_net.py:61
↓ 14 callers
Function
concatenate
(tensors, axis=-1)
keras_face/library/fr_utils.py:32
↓ 4 callers
Function
detect_face_from_img_path
(frontal_face_model_file_path, image_path)
keras_face/library/opencv_utils.py:6
↓ 4 callers
Method
verify
Function that verifies if the person on the "image_path" image is "identity". Arguments: image_path -- path to an image
keras_face/library/face_net.py:64
↓ 4 callers
Method
verify
Function that verifies if the person on the "image_path" image is "identity". Arguments: image_path -- path to an image
keras_face/library/siamese.py:204
↓ 3 callers
Method
create_vgg16_model
(self)
keras_face/library/siamese.py:149
↓ 3 callers
Function
img_to_encoding
(image_path, model)
keras_face/library/fr_utils.py:193
↓ 3 callers
Method
who_is_it
Implements face recognition for the happy house by finding who is the person on the image_path image. Arguments: image_path
keras_face/library/siamese.py:243
↓ 2 callers
Method
create_network
(self, input_shape)
keras_face/library/siamese.py:92
↓ 2 callers
Method
fit
(self, database, model_dir_path, epochs=None, batch_size=None, threshold=None, vgg16_include_top=None)
keras_face/library/siamese.py:154
↓ 2 callers
Method
get_config_path
(model_dir_path)
keras_face/library/siamese.py:138
↓ 2 callers
Method
get_weight_path
(model_dir_path)
keras_face/library/siamese.py:142
↓ 2 callers
Method
load_model
(self, model_dir_path)
keras_face/library/face_net.py:55
↓ 2 callers
Method
load_model
(self, model_dir_path)
keras_face/library/siamese.py:62
↓ 2 callers
Method
who_is_it
Implements face recognition for the happy house by finding who is the person on the image_path image. Arguments: image_path
keras_face/library/face_net.py:98
↓ 1 callers
Method
create_base_network
Base network to be shared (eq. to feature extraction).
keras_face/library/siamese.py:75
↓ 1 callers
Method
create_pairs
Positive and negative pair creation. Alternates between positive and negative pairs.
keras_face/library/siamese.py:117
↓ 1 callers
Function
faceRecoModel
Implementation of the Inception model used for FaceNet Arguments: input_shape -- shape of the images of the dataset Returns:
keras_face/library/inception_blocks.py:212
↓ 1 callers
Method
get_architecture_path
(model_dir_path)
keras_face/library/siamese.py:146
↓ 1 callers
Function
inception_block_1a
Implementation of an inception block
keras_face/library/inception_blocks_v2.py:9
↓ 1 callers
Function
inception_block_1a
Implementation of an inception block
keras_face/library/inception_blocks.py:13
↓ 1 callers
Function
inception_block_1b
(X)
keras_face/library/inception_blocks_v2.py:45
↓ 1 callers
Function
inception_block_1b
(X)
keras_face/library/inception_blocks.py:49
↓ 1 callers
Function
inception_block_1c
(X)
keras_face/library/inception_blocks_v2.py:76
↓ 1 callers
Function
inception_block_1c
(X)
keras_face/library/inception_blocks.py:80
↓ 1 callers
Function
inception_block_2a
(X)
keras_face/library/inception_blocks_v2.py:102
↓ 1 callers
Function
inception_block_2a
(X)
keras_face/library/inception_blocks.py:106
↓ 1 callers
Function
inception_block_2b
(X)
keras_face/library/inception_blocks_v2.py:134
↓ 1 callers
Function
inception_block_2b
(X)
keras_face/library/inception_blocks.py:138
↓ 1 callers
Function
inception_block_3a
(X)
keras_face/library/inception_blocks_v2.py:160
↓ 1 callers
Function
inception_block_3a
(X)
keras_face/library/inception_blocks.py:164
↓ 1 callers
Function
inception_block_3b
(X)
keras_face/library/inception_blocks_v2.py:184
↓ 1 callers
Function
inception_block_3b
(X)
keras_face/library/inception_blocks.py:188
↓ 1 callers
Function
load_weights
(model_dir_path=None)
keras_face/library/fr_utils.py:142
↓ 1 callers
Function
load_weights_from_FaceNet
(FRmodel, model_dir_path=None)
keras_face/library/fr_utils.py:130
↓ 1 callers
Function
main
()
keras_face/library/face_net.py:143
↓ 1 callers
Function
main
()
keras_face/library/siamese.py:293
↓ 1 callers
Function
main
()
keras_face/library/opencv_utils.py:25
↓ 1 callers
Function
main
()
demo/siamese_demo_predict.py:4
↓ 1 callers
Function
main
()
demo/siamese_demo_train.py:4
↓ 1 callers
Function
main
()
demo/opencv_detect_faces.py:4
↓ 1 callers
Function
main
()
demo/face_net_demo.py:4
↓ 1 callers
Function
triplet_loss
Implementation of the triplet loss as defined by formula (3) Arguments: y_true -- true labels, required when you define a loss in Keras,
keras_face/library/face_net.py:10
↓ 1 callers
Function
triplet_loss_test
()
keras_face/library/face_net.py:39
↓ 1 callers
Function
variable
(value, dtype=_FLOATX, name=None)
keras_face/library/fr_utils.py:18
Function
LRN2D
(x)
keras_face/library/fr_utils.py:37
Method
__init__
(self)
keras_face/library/face_net.py:52
Method
__init__
(self)
keras_face/library/siamese.py:40
Method
accuracy
Compute classification accuracy with a fixed threshold on distances.
keras_face/library/siamese.py:87
Function
contrastive_loss
Contrastive loss from Hadsell-et-al.'06 http://yann.lecun.com/exdb/publis/pdf/hadsell-chopra-lecun-06.pdf
keras_face/library/siamese.py:27
Function
conv2d_bn
(x, layer=None, cv1_out=None, cv1_filter=(1, 1), cv1_s
keras_face/library/fr_utils.py:40
Function
eucl_dist_output_shape
(shapes)
keras_face/library/siamese.py:22
Function
euclidean_distance
(vects)
keras_face/library/siamese.py:17
Function
faceRecoModel
Implementation of the Inception model used for FaceNet Arguments: input_shape -- shape of the images of the dataset Returns:
keras_face/library/inception_blocks_v2.py:208
Function
load_dataset
()
keras_face/library/fr_utils.py:177
Function
shape
(x)
keras_face/library/fr_utils.py:23
Function
square
(x)
keras_face/library/fr_utils.py:26
Function
zeros
(shape, dtype=_FLOATX, name=None)
keras_face/library/fr_utils.py:29