2016-01-12 05:17:31 +08:00
|
|
|
# OpenFace training tests.
|
|
|
|
#
|
2016-01-14 03:52:52 +08:00
|
|
|
# Copyright 2015-2016 Carnegie Mellon University
|
2016-01-12 05:17:31 +08:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
np.set_printoptions(precision=2)
|
|
|
|
import pandas as pd
|
|
|
|
import tempfile
|
|
|
|
|
|
|
|
from subprocess import Popen, PIPE
|
|
|
|
|
|
|
|
openfaceDir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
modelDir = os.path.join(openfaceDir, 'models')
|
|
|
|
|
|
|
|
exampleImages = os.path.join(openfaceDir, 'images', 'examples')
|
|
|
|
lfwSubset = os.path.join(openfaceDir, 'data', 'lfw-subset')
|
|
|
|
|
|
|
|
|
|
|
|
def test_dnn_training():
|
2016-02-22 05:18:16 +08:00
|
|
|
assert os.path.isdir(lfwSubset), "Get lfw-subset by running ./data/download-lfw-subset.sh"
|
2016-01-12 05:17:31 +08:00
|
|
|
|
2016-01-12 06:50:31 +08:00
|
|
|
imgWorkDir = tempfile.mkdtemp(prefix='OpenFaceTrainingTest-Img-')
|
2016-01-12 05:17:31 +08:00
|
|
|
cmd = ['python2', os.path.join(openfaceDir, 'util', 'align-dlib.py'),
|
|
|
|
os.path.join(lfwSubset, 'raw'), 'align', 'outerEyesAndNose',
|
2016-01-12 06:50:31 +08:00
|
|
|
os.path.join(imgWorkDir, 'aligned', 'train')]
|
2016-01-12 05:17:31 +08:00
|
|
|
p = Popen(cmd, stdout=PIPE, stderr=PIPE)
|
|
|
|
(out, err) = p.communicate()
|
2016-01-13 02:31:00 +08:00
|
|
|
print(out)
|
|
|
|
print(err)
|
2016-01-12 05:17:31 +08:00
|
|
|
assert p.returncode == 0
|
|
|
|
|
2016-01-12 06:50:31 +08:00
|
|
|
netWorkDir = tempfile.mkdtemp(prefix='OpenFaceTrainingTest-Net-')
|
2016-01-12 05:17:31 +08:00
|
|
|
cmd = ['th', './main.lua',
|
2016-01-12 06:50:31 +08:00
|
|
|
'-data', os.path.join(imgWorkDir, 'aligned'),
|
2016-01-12 05:17:31 +08:00
|
|
|
'-modelDef', '../models/openface/nn4.def.lua',
|
|
|
|
'-peoplePerBatch', '3',
|
2016-01-14 03:33:17 +08:00
|
|
|
'-imagesPerPerson', '10',
|
|
|
|
'-nEpochs', '10',
|
|
|
|
'-epochSize', '1',
|
2016-01-12 06:50:31 +08:00
|
|
|
'-cache', netWorkDir,
|
2016-01-12 05:17:31 +08:00
|
|
|
'-cuda', '-cudnn',
|
|
|
|
'-nDonkeys', '-1']
|
|
|
|
p = Popen(cmd, stdout=PIPE, stderr=PIPE, cwd=os.path.join(openfaceDir, 'training'))
|
|
|
|
(out, err) = p.communicate()
|
2016-01-13 02:31:00 +08:00
|
|
|
print(out)
|
|
|
|
print(err)
|
2016-01-12 05:17:31 +08:00
|
|
|
assert p.returncode == 0
|
|
|
|
|
|
|
|
# Training won't make much progress on lfw-subset, but as a sanity check,
|
|
|
|
# make sure the training code runs and doesn't get worse than the initialize
|
|
|
|
# loss value of 0.2.
|
2016-01-12 06:50:31 +08:00
|
|
|
trainLoss = pd.read_csv(os.path.join(netWorkDir, '1', 'train.log'),
|
2016-01-12 05:17:31 +08:00
|
|
|
sep='\t').as_matrix()[:, 0]
|
2016-01-13 04:46:49 +08:00
|
|
|
assert np.mean(trainLoss) < 0.3
|
2016-01-12 05:17:31 +08:00
|
|
|
|
2016-01-13 04:46:49 +08:00
|
|
|
shutil.rmtree(imgWorkDir)
|
2016-01-12 06:50:31 +08:00
|
|
|
shutil.rmtree(netWorkDir)
|