Keras के साथ डीप लर्निंग परिचय
Miguel Esteban
Data Scientist & Founder



# पहले से बने और compiled मॉडल को fit करना
model.fit(X_train, y_train, epochs=100, batch_size=128)
^^^^^^^^^^^^^^



# keras layers से BatchNormalization इम्पोर्ट करें from tensorflow.keras.layers import BatchNormalization# एक Sequential मॉडल बनाएँ model = Sequential()# एक input layer जोड़ें model.add(Dense(3, input_shape=(2,), activation = 'relu'))# ऊपर वाली layer के outputs पर batch normalization जोड़ें model.add(BatchNormalization())# एक output layer जोड़ें model.add(Dense(1, activation='sigmoid'))
Keras के साथ डीप लर्निंग परिचय