Кто-нибудь знает, что происходит?
Код: Выделить всё
model = get_mnist_model()
model.compile(optimizer="rmsprop",
loss="sparse_categorical_crossentropy",
metrics=["accuracy", RootMeanSquaredError()])
model.fit(train_images, train_labels,
epochs=3,
validation_data=(val_images, val_labels))
test_metrics = model.evaluate(test_images, test_labels)
результатом абстрактных методов
Подробнее здесь: https://stackoverflow.com/questions/707 ... uarederror