I understand the encoder-decoder model, and how the output of the encoder will be the input of the decoder. Assume here I have decoder model only, I have the decoder initial_state (i.e. decoder_states_inputs are given).
I want to give the "decoder_inputs" to be the start token (for example < start > )... but I don't know how and in what format?!
decoder_lstm = LSTM(n_units, return_sequences=True, return_state=True)
decoder_outputs, state_h, state_c = decoder_lstm(decoder_inputs, initial_state=decoder_states_inputs)
Also, must I add the start token to my original sequences? i.e.:
<start> statemnt1
<start> statemnt2
....