DLFS_code icon indicating copy to clipboard operation
DLFS_code copied to clipboard

Typo in 01_foundations/Code.ipynb

Open pjgoodall opened this issue 5 years ago • 0 comments

In the first plot of the Square and ReLU functions:

ax[0].set_title("Square function")
ax[0].set_xlabel("input")
ax[0].set_ylabel("input")

ylabel is a duplicate of xlabel.

should have been:

ax[0].set_title("Square function")
ax[0].set_xlabel("input")
ax[0].set_ylabel("output")

pjgoodall avatar Jun 08 '20 23:06 pjgoodall