I get some errors when I run the code in this tutorial by Google. when I run the following piece of code:
plotter = tfdocs.plots.HistoryPlotter(metric = 'binary_crossentropy', smoothing_std=10)
plotter.plot(size_histories)
plt.ylim([0.5, 0.7])
It gives me the following error:
AttributeError: module 'tensorflow_docs' has no attribute 'plots'
How can I fix this issue?