Hi, I’m trying to run fine-tuning on cloud server(Kaggle or Colab). However, I find myself working 80% of my time figuring out the right version of packages to avoid package issues. For example, it took me a week to find this pip install command to run trainer.
!pip install git+https://github.com/huggingface/transformers@v4.37.0
!pip install pip
!pip install torch==2.0.1
!pip install datasets==2.14.4
!pip install peft==0.5.0
!pip install bitsandbytes==0.41.1
!pip install trl==0.7.1
Is there any smart way to find this pacakge versions? It feels very wastful of time and I want to improve on this problem