Closed SinanGabel closed 6 years ago
Thanks for reporting. Let me look into this. I am glad it works if you comment out the display lines but you are missing out on the visualizations.
OK, I tested and the code runs perfectly for me. I am using the latest version of tensorflow and matplotlib.
It looks like it is a known problem: https://stackoverflow.com/questions/47404653/pandas-0-21-0-timestamp-compatibility-issue-with-matplotlib
It appears the problem has been resolved so you should get the notebook working by upgrading to the latest version of everything.
Thank you, Martin.
I first tried by updating my different software versions but that did not help but a fix from this page did it: https://github.com/matplotlib/matplotlib/issues/9610
I.e. adding the two lines after import pandas, then utils_display.picture_this_4() & _6() work.
import pandas
import pandas.plotting._converter as pandacnv
pandacnv.register()
from matplotlib import pyplot as plt
import utils_prettystyle
import utils_display
utils_display.picture_this_4() does not run (without any changes).
I get the below error information running jupyter on Ubuntu desktop 18.04. It is the same problem with:
utils_display.picture_this_6()
By commenting out these the notebook runs without problems.
And thanks by the way for the great videos and playgrounds, they really upgrade ones neural network understanding and learning!
AttributeError Traceback (most recent call last)