Trying to implement Whisper fine tuning on colab: Google Colab
When trying the step: training_args = Seq2SeqTrainingArguments(…) got the following error message:
ImportError: Using the Trainer
with PyTorch
requires accelerate>=0.19.0
: Please run pip install transformers[torch]
or pip install accelerate -U
I tried both pip install transformers[torch]
or pip install accelerate -U
with no success. Any help is appreciated.