t5 training notebook issue
Hello Suraj , Thanks for sharing this fine tuning of t5 notebook. I am trying to use it as it is but when i am running it on colab it throwing following error.
**trainer = pl.Trainer(train_params) "TypeError: init() got an unexpected keyword argument 'early_stop_callback'"
I will appreciate your time in resolving this issue.
thanks
Hi! I had the same problem and I figured out that it was a package version problem. In order to make this notebook work properly, you need to use this versions:
!pip install transformers==2.9.0
!pip install pytorch_lightning==0.7.5
I have created a PR, but meanwhile you can download the fixed notebook from my fork: here
Best, Marcos
Hi, you can simply comment the early_stop_callback and it will work