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
I would like to train a multi-task learning model for two tasks, pos tagging, and language id. I have one dataset that is annotated for pos tagging and language id. My question is that is it possible to train a MTL model that learns these two tasks jointly using one dataset?
Thanks in advance for your response.
The text was updated successfully, but these errors were encountered:
Hi @Dragon615
one trick to achieve this is to create two copies of the folder with your train/dev/test files, i.e. data/pos_task/ and data/language_id_task/
Then you can configure the model so that it is trained on 'pos_task' for POS tagging and on 'language_id_task' for language identification.
I would like to train a multi-task learning model for two tasks, pos tagging, and language id. I have one dataset that is annotated for pos tagging and language id. My question is that is it possible to train a MTL model that learns these two tasks jointly using one dataset?
Thanks in advance for your response.
The text was updated successfully, but these errors were encountered: