You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similarly to the ParallelEncoder, a ParallelDecoder setup could allow multi-task learning. This should not be too hard to implement but we need to take care of some details:
support separate values for the decoding parameters (beam_width, length_penalty, etc.),
parts of SequenceToSequence assume a single output head (e.g. loss computation, reverse vocabulary lookup, exported outputs for model serving, etc. which should be moved in the decoder itself)
The text was updated successfully, but these errors were encountered:
@guillaumekln is there any possibility on OpenNMT-py to integrate multi encoder decoders setup for multi-task learning? If so I wish to contribute for it.
Similarly to the
ParallelEncoder
, aParallelDecoder
setup could allow multi-task learning. This should not be too hard to implement but we need to take care of some details:The text was updated successfully, but these errors were encountered: