Mattr
(Matt Rosinski)
84
I made one small change to Jeremy’s Kaggle NLP notebook from this:
model_nm = 'microsoft/deberta-v3-small'
To this:
model_nm = 'distilroberta-base'
The tokenizer with this model is different but was still working.
But then I got an error during the first epoch after running >> trainer.train();
This reply to a week 2 question helped correct the problem.
What other issues might occur when using different models?