How can I implement the concept of Scheduled Sampling while training an LSTM Encoder-Decoder with teacher forcing in Keras?
The source paper is here: https://arxiv.org/abs/1506.03099
From this post, I see that pure Tensor-flow supports this training helper:
scheduled sampling in Tensorflow
https://www.tensorflow.org/api_docs/python/tf/contrib/seq2seq/ScheduledOutputTrainingHelper
Is there a way to do this in Keras, maybe using a custom backend function?