While going through this notebook. I found an error.
Please rectify it.
Can you check if the brackets in expression below are correct?
loss.append(log_loss(np.argmax(Y, axis = 1)), y_pred)
looks like, it might be:
loss.append(log_loss(np.argmax(Y, axis=1), y_pred))
Thanks a lot for help…