Создание ошибки, но я могу найти строку, на которую они ссылаются. строка 132: обратные вызовы = [тензорная доска, контрольная точка],
filepath = "LSTM_Final-{epoch:02d}" # unique file name that will include the epoch and the validation acc for that epoch
checkpoint = ModelCheckpoint("models\\{}.model".format(filepath, monitor='val_acc', verbose=1, save_best_only=True, mode='max')) # saves only the best ones
# Train model
history = model.fit(
np.array(train_x), np.array(train_y),
batch_size=BATCH_SIZE,
epochs=EPOCHS,
validation_data=(np.array(validation_x), np.array(validation_y)),
callbacks=[tensorboard, checkpoint],
)