deep-learning-with-tensorflow-2
deep-learning-with-tensorflow-2 copied to clipboard
Computer Vision-> Second hand car price prediction-> Error when trying to normalize the data
The axis=-1 argument won't work in the tensorflow normalization. Although it tries to normalize to the last axis. But in 16.1 if you did it explicitly too by specifying the last axis of columns, it won't work. For that to work you either need to give axis=None or give each element as an individual axis parameter for tf to recognize.
Can I create a pull request for the same? Since I was working on it since morning, and maybe I found it how to solve the issue?