C5 W1 Assignment 1 exercise 4 ( lstm_forward)initialization

In the instructions it is said: “Initialize the 3D tensors 𝑎, 𝑐 and 𝑦” and then “Initialize the 2D tensor 𝑎⟨𝑡⟩”-
does this mean: initialize with zeros? If not, with what?
I am asking because later the instructions say specifically: Initialize 𝑐⟨𝑡⟩
with zeros.

Hi @Doron_Modan ,

If you read the comment line in the code template, it clearly stated that initialize a, c and y with zeros. This can be done by calling np.zeros()