Skip to content
Advertisement

“Could not interpret activation function identifier: 256” error in Keras

I’m trying to run the following code but I got an error. Did I miss something in the codes?

JavaScript

and here is the error message:

JavaScript

Advertisement

Answer

This error indicates that, you have defined an activation function that is not interpretable. In your definition of a dense layer you have passed two argument as layers[i] and layers[i+1].

Based on the docs here for the Dense function: The first argument is number of units (neurons) and the second parameter is activation function. So, it considers layers[i+1] as an activation function that could not be recognized by the Dense function.

Inference: You do not need to pass next layer neurons to your dense layer. So remove layers[i+1] argument.

Furthermore, you have to define an input layer for your model and pass the input shape to it for your model.

Therefore, modified code should be like this:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement