Get activation functions of output layers.
Examples
if (FALSE) { # reticulate::py_module_available("tensorflow")
model <- create_model_lstm_cnn(
maxlen = 50,
layer_lstm = 8,
layer_dense = c(64, 2),
verbose = FALSE)
get_output_activations(model)
}