View source: R/create_model_utils.R
reshape_input | R Documentation |
Replace first layer of model with new input layer of different shape. Only works for sequential models that use CNN and LSTM layers.
reshape_input(model, input_shape)
model |
A keras model. |
input_shape |
The new input shape vector (without batch size). |
A keras model with changed input shape of input model.
model_1 <- create_model_lstm_cnn(
maxlen = 50,
kernel_size = c(10, 10),
filters = c(64, 128),
pool_size = c(2, 2),
layer_lstm = c(32),
verbose = FALSE,
layer_dense = c(64, 2))
model <- reshape_input(model_1, input_shape = c(120, 4))
model
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.