tensorflow_end2end_speech_recognition
tensorflow_end2end_speech_recognition copied to clipboard
models/attention/decoders/attention_layer.py
In the class AttentionLayer (models/attention/decoders/attention_layer.py), the initial parameter does not include "sigmoid_smoothing".
But, in models/attention/attention_seq2seq.py, it calls AttentionLayer with sigmoid_smoothing=self.sigmoid_smoothing (line 338).
Which file should I modify? Thx!
Encountered the same problem too. So what did you do? I added an parameter "sigmoid_smoothing", and assigned default value to it, will it be ok?