batch normalization, yes or no?
问题 I use Tensorflow 1.14.0 and Keras 2.2.4. The following code implements a simple neural network: import numpy as np np.random.seed(1) import random random.seed(2) import tensorflow as tf tf.set_random_seed(3) from tensorflow.keras.models import Model, Sequential from tensorflow.keras.layers import Input, Dense, Activation x_train=np.random.normal(0,1,(100,12)) model = Sequential() model.add(Dense(8, input_shape=(12,))) # model.add(tf.keras.layers.BatchNormalization()) model.add(Activation(