I am plotting the accuracy and loss figures. I am getting the following plot that represents 3 places after 0 like 0.XXX I aim to present only one like 0.X
how can I fix this
acc = history.history['accuracy']
acc_val = history.history['val_accuracy']
epochs = range(len(acc))
plt.title('Training and Validation accuracy')
plt.xlabel('Epochs')
plt.ylabel('accuracy')
plt.legend()
plt.show()