October 2018
Intermediate to advanced
472 pages
10h 57m
English
Now, we are getting to the part that all deep learning engineers love: designing the model's architecture! We will be using four distinctive types of layers in our model architecture:
We will again employ the Keras APIs to make the implementation quick:
model = Sequential()model.add(LSTM( 256, input_shape=(network_input.shape[1], network_input.shape[2]), ...
Read now
Unlock full access