def fc_block1(x, n=1000, d=0.5): x = Dense(n)(x) x = BatchNormalization()(x) x = LeakyReLU()(x) x = Dropout(d)(x) return x