Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.ip.tensorflow_extractor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.ip.tensorflow_extractor
Commits
f5ecbee7
Commit
f5ecbee7
authored
5 years ago
by
Tiago de Freitas Pereira
Browse files
Options
Downloads
Patches
Plain Diff
Make FaceNet pickalable
parent
00042f9a
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!16
Make FaceNet pickalable
Pipeline
#39234
passed
5 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/ip/tensorflow_extractor/FaceNet.py
+35
-13
35 additions, 13 deletions
bob/ip/tensorflow_extractor/FaceNet.py
with
35 additions
and
13 deletions
bob/ip/tensorflow_extractor/FaceNet.py
+
35
−
13
View file @
f5ecbee7
...
...
@@ -9,6 +9,7 @@ from bob.io.image import to_matplotlib
from
bob.extension
import
rc
import
bob.extension.download
import
bob.io.base
import
multiprocessing
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -45,7 +46,7 @@ def get_model_filenames(model_dir):
ckpt_file
=
step_str
.
groups
()[
0
]
return
meta_file
,
ckpt_file
_semaphore
=
multiprocessing
.
Semaphore
()
class
FaceNet
(
object
):
"""
Wrapper for the free FaceNet variant:
https://github.com/davidsandberg/facenet
...
...
@@ -85,9 +86,19 @@ class FaceNet(object):
super
(
FaceNet
,
self
).
__init__
()
self
.
model_path
=
model_path
self
.
image_size
=
image_size
self
.
layer_name
=
layer_name
self
.
_clean_unpicklables
()
def
_clean_unpicklables
(
self
):
self
.
session
=
None
self
.
embeddings
=
None
self
.
layer_name
=
layer_name
self
.
graph
=
None
self
.
images_placeholder
=
None
self
.
embeddings
=
None
self
.
phase_train_placeholder
=
None
self
.
session
=
None
def
_check_feature
(
self
,
img
):
img
=
numpy
.
ascontiguousarray
(
img
)
...
...
@@ -142,17 +153,18 @@ class FaceNet(object):
logger
.
info
(
"
Successfully loaded the model.
"
)
def
__call__
(
self
,
img
):
images
=
self
.
_check_feature
(
img
)
if
self
.
session
is
None
:
self
.
graph
=
tf
.
Graph
()
self
.
session
=
tf
.
compat
.
v1
.
Session
(
graph
=
self
.
graph
)
if
self
.
embeddings
is
None
:
self
.
load_model
()
feed_dict
=
{
self
.
images_placeholder
:
images
,
self
.
phase_train_placeholder
:
False
,
}
features
=
self
.
session
.
run
(
self
.
embeddings
,
feed_dict
=
feed_dict
)
with
_semaphore
:
images
=
self
.
_check_feature
(
img
)
if
self
.
session
is
None
:
self
.
graph
=
tf
.
Graph
()
self
.
session
=
tf
.
compat
.
v1
.
Session
(
graph
=
self
.
graph
)
if
self
.
embeddings
is
None
:
self
.
load_model
()
feed_dict
=
{
self
.
images_placeholder
:
images
,
self
.
phase_train_placeholder
:
False
,
}
features
=
self
.
session
.
run
(
self
.
embeddings
,
feed_dict
=
feed_dict
)
return
features
.
flatten
()
@staticmethod
...
...
@@ -176,3 +188,13 @@ class FaceNet(object):
)
return
model_path
def
__setstate__
(
self
,
d
):
# Handling unpicklable objects
self
.
__dict__
=
d
def
__getstate__
(
self
):
# Handling unpicklable objects
with
_semaphore
:
self
.
_clean_unpicklables
()
return
self
.
__dict__
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment