- Practical Convolutional Neural Networks
- Mohit Sewak Md. Rezaul Karim Pradeep Pujari
- 27字
- 2021-06-24 18:58:52
Training the network
Now that we've constructed the network, we feed it with data and train it, as follows:
# Training model.fit(X_train, y_train, batch_size=128, nb_epoch=4, verbose=1,validation_data=(X_test, y_test))