Google News
logo
TensorFlow.js - Interview Questions
Why and how normalization is achieved in TensorFlow?
The TensorFlow system expects all inputs in a dimension. But the dataset we work does not contain significant values. Hence the normalization of data is required. We perform the batch normalization of the data.
data = tf.nn.batch_norm_with_global_normalization()
Advertisement