You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use innsight on a basic Keras model for example a simple MLP. Could you give an example how to do this? I get and unknown argument model error when calling the convert() function.
model <- keras_model_sequential()
model %>%
layer_dense(units = 32, input_shape = c(784)) %>%
layer_activation('relu') %>%
layer_dense(units = 10) %>%
layer_activation('softmax')
The text was updated successfully, but these errors were encountered:
I am trying to use innsight on a basic Keras model for example a simple MLP. Could you give an example how to do this? I get and unknown argument model error when calling the convert() function.
The text was updated successfully, but these errors were encountered: