Код: Выделить всё
model.fit(train_images, train_labels, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=0.1)
Код: Выделить всё
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
in ()
----> 1 model.fit(train_images, train_labels, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=0.1)
NameError: name 'train_images' is not defined
Подробнее здесь: https://stackoverflow.com/questions/787 ... rnf-eccv18