Logarithmic scale for a learning curve
I'm plotting the learning curve with Python with the following code:
import matplotlib.pyplot as plt
import seaborn as sns
import csv
import pandas as pd
sns.set(style='darkgrid')
# Increase the plot size and font size.
sns.set(font_scale=1.5)
plt.rcParams[figure.figsize] = (12,6)
plt.plot(lst, 'r')
plt.legend([Validation Loss])
# Label the plot.
plt.title(RNN deltat)
plt.xlabel(Epoch)
plt.ylabel(Loss)
The lecturer said better try it on a logarithmic scale. Can you please help to apply the logarithm here?
Topic loss plotting validation deep-learning python
Category Data Science