Is possible to make ludwig configuration for translation from one language to other #1630
-
I wonder if possible to make ludwig configuration for translation from one language to other.
I suppose that the configuration for chat bot should be similar but there is the same language transformer for input and output. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The answer is yes (on v0.4/tensorflow). For a text2text translation task, what you've outlined is essentially it. We're working on reimplementing text decoders in Pytorch, so this functionality should be available in the next 0.5 pytorch-based release as well.
We don't support pre-trained text decoders, but you should be able to get something reasonable with a basic |
Beta Was this translation helpful? Give feedback.
The answer is yes (on v0.4/tensorflow).
For a text2text translation task, what you've outlined is essentially it. We're working on reimplementing text decoders in Pytorch, so this functionality should be available in the next 0.5 pytorch-based release as well.
We don't support pre-trained text decoders, but you should be able to get something reasonable with a basic
lstm
orrnn
decoder.