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
The library is broken in the most recent version of transformers because the HfMultiTaskTrainer class doesn't use keyword arguments to call super().__init__(), which means that when HuggingFace adds a constructor argument (which they have done), the values get passed to the wrong argument.
The library is broken in the most recent version of
transformers
because theHfMultiTaskTrainer
class doesn't use keyword arguments to callsuper().__init__()
, which means that when HuggingFace adds a constructor argument (which they have done), the values get passed to the wrong argument.hf-multitask-trainer/hf_mtask_trainer/trainer.py
Lines 79 to 83 in 8c40c26
It should be something like
The text was updated successfully, but these errors were encountered: