我正在从事一个涉及人脸检测、人脸识别(基于facenet)、年龄/性别检测和面部表情分析的项目。对于每个提到的特性,我有一个tensorflow图,它工作得很好。现在,我需要将所有这些代码合并到一个代码中。我的做法如下:
with tf.Graph().as_default():
sess = tf.Session(config=tf.ConfigProto(gpu_options=gpu_options, log_device_placement=False))
with sess.as_default():
#configure my
我使用基于tensorflow的人脸识别模型。在我的本地机器-- ubuntu 14.04 --一切都正常。当我使用docker部署它时,我会得到以下错误:
DataLossError: Unable to open table file /data/model/model.ckpt-80000: Data loss: not an sstable (bad magic number): perhaps your file is in a different file format and you
need to use a different restore operator?
我正在为te