October 2018
Intermediate to advanced
252 pages
6h 49m
English
In the following code, we define the first layer:
from keras.layers import Inputvisible = Input(shape=(32,))
We connect the layers together:
visible = Input(shape=(32,))hidden = Dense(32)(visible)