Модель Keras выдает 0 раз без ошибок - PullRequest
0 голосов
/ 31 декабря 2018

Я работал над использованием модели Keras с cv2 сценарием распознавания лиц для распознавания лиц.Недавно я столкнулся с проблемой, когда модель выводит 0, когда она делает прогноз.Это особенно странно, потому что 0 не было в массиве меток.Кстати, у меня есть каталог с именем opencvtrainer, который содержит еще 3 каталога, в каждом из которых есть изображения лиц людей.Вот код:

import PIL as PIL
import tensorflow as tf
import numpy as np
import cv2 as cv2
import os
# goes to opencvtrainer directory
basedir = os.path.dirname(os.path.abspath(__file__))
imagedir = os.path.join(basedir, "opencvtrainer")
ylabels = []
# if directory person: id
labelids = {
    "john_": 001,
    "erin_": 002,
    "scott_": 003,
    "colin_": 004
}
''' "glenn_": 004,
   "faith_": 005,
'''

xtrain = []
xl = []
# make general face classifier
# creates AI needing training
# goes through files in files in the opencvtrainer directory
fc = cv2.CascadeClassifier("lib/python2.7/site-package\
s/cv2/data/haarcascade_frontalface_alt2.xml")
for root, dirs, files in os.walk(imagedir):
    for file in files:
        if "png" in file:
            # path to file
            path = os.path.join(root, file)

            # whose file it is
            label = os.path.basename(root)

            # gets image
            imagep = PIL.Image.open(path)

            # convets image into greyscale then numpy array
            imagear = np.array(imagep.convert("L"), "uint8")
            imagearre = imagear
            face = fc.detectMultiScale(imagearre)

            for (x, y, w, h) in face:
                # makes roi for face
                roi = imagearre[y:y + h, x:x + w]
                roi = cv2.resize(roi, (70, 70))
                # gives that np array to xtrain
                xtrain.append(roi)
                print(roi.shape)
                # gives ylabels a num for all files it opened
                xl.append(labelids[label])


xtrain = np.array(xtrain)
ylabels = np.array(xl)
#adds AI from keras
model = tf.keras.models.Sequential()
# tells what an input should be & does crap w/ current input
model.add(tf.keras.layers.Flatten(input_shape=(70, 70)))
# adds layer
model.add(tf.keras.layers.Dense(128, activation=tf.nn.relu))
# adds layer
model.add(tf.keras.layers.Dense(128, activation=tf.nn.relu))
# adds layer
model.add(tf.keras.layers.Dense(1, activation=tf.nn.softmax))
# tests for accuracy
model.compile(optimizer="adam", loss="binary_crossentropy", metrics= . 
['accuracy'])
print(ylabels)
model.fit(xtrain, ylabels, epochs=3)
model.save("test11")'

1 Ответ

0 голосов
/ 31 декабря 2018

1) Измените количество единиц в последнем слое на 4 (поскольку у вас есть 4 различных класса):

tf.keras.layers.Dense(4, activation=tf.nn.softmax)

2) Начните нумерацию меток с нуля, а не с одного:

labelids = {"john_": 0, "erin_": 1, "scott_": 2, "colin_": 3}

3) Используйте sparse_categorical_crossentropy в качестве функции потерь.Кроме того, вы можете в одно касание кодировать метки, а затем использовать categorical_crossentropy в качестве функции потерь.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...