How can I set my y-axis to range between 0 to 100? This is my code:
fig, ax = plt.subplots()
plt.plot(history.history['accuracy'], marker="*", label='Train accuracy', color='blue')
plt.plot(history.history['val_accuracy'], marker="o", label='Test accuracy', color='red')
plt.title('Plot' )
plt.ylabel('yaxis')
plt.xlabel('xaxis')
plt.legend(loc='best')
plt.show()