plt.plot(results.history['acc']) plt.plot(results.history['val_acc']) plt.title('model accuracy') plt.ylabel('accuracy') plt.xlabel('epoch') plt.legend(['train', 'test'], loc='down right')
<matplotlib.legend.Legend at 0x22f7656de48>