Keras
Keras
Romain Tavenard
Specifying model architecture
The Sequential model class
model = Sequential(
[
# Here, we will put a list of layers
]
)
Layers used to define an MLP
I InputLayer (not mandatory, link to docs)
I Dense (link to docs)
I Can be used for both internal and output layers
I activation is the activation function (str)
model = Sequential(
[
# Input layer (16-dimensional)
InputLayer(input_shape=(16, )),
# Hidden layer (256 neurons, ReLU activation)
Dense(units=256, activation="relu"),
# Output layer (1 neuron, sigmoid activation)
Dense(units=1, activation="sigmoid")
]
)
Fitting a model
Setting optimization strategy (1/2)
I compile step
I optimizer (required)
I can be a string ("sgd", "adam", . . . )
I can be a keras optimizer instance (allows to set learning rate,
...)
I loss (required) can be a string
I "mse": Mean Squared Error
I "binary_crossentropy": Cross-entropy in the binary case
(single output neuron)
I "categorical_crossentropy": Cross-entropy in the
multiclass case (multiple output neurons)
I metrics (optional) is a list
I additional metrics to be reported during model training (eg.
"accuracy" for classification tasks)
Setting optimization strategy (2/2)
model = Sequential(
[
# Layers here
]
)
model.compile(
optimizer="sgd",
loss="mse",
metrics=[]
)
Setting fit options (1/2)
I fit step
I First 2 arguments: training data (required)
I validation_data (optional) is a tuple
I validation set organized as a pair (X , y )
I epochs: number of epochs (required)
I batch_size: number of samples per batch (strongly
recommended)
Setting fit options (2/2)
model = Sequential(
[
# Layers here
]
)
model.compile(
# Compile options
)
model.fit(X, y,
validation_data=(X_val, y_val),
epochs=10,
batch_size=64)
Callbacks
Callbacks in general