model_lstm_save_path = 'best_model_lstm.h5'
checkpoint_callback_lstm = ModelCheckpoint(model_lstm_save_path,
monitor='val_accuracy',
save_best_only=True,
verbose=1)