Course 5- week 2- Exercise 5 - Emojify_V2 - important

Hi,
I cannot find any sing of ‘processed_inputs’ in my code and I am keep receiving this error!

NotImplementedError: Cannot convert a symbolic Tensor (dense_1/BiasAdd:0) to a numpy array.

[code removed - moderator]

I would appreciate any help on this ! it is been one day :frowning:

The mentors are volunteers, and sometimes there is no one on-duty to answer questions.
I’ll look into this and reply soon.

1 Like

First, please don’t post your code on the forum. The course community standards ask that you not share your code.

I think your “shape” argument for the Input layer is incorrect. You need the entire input_shape, not just the shape of the [0] element.

Programming tip: You don’t really need a "processed_inputs’ variable, it’s just a copy of “embeddings”. Saving a copy adds no value.

Also, “return_sequences” is a boolean, not an input_shape element.