Installing Dependencies
#4
by
nobusama17
- opened
Installing Dependencies:
Initially, I encountered version conflicts—especially with the transformers version and the dependency on sentence-transformers.
To fix this, I uninstalled sentence-transformers and installed the required packages with the following command:
!pip uninstall -y sentence-transformers
!pip install torch>=2.0 numpy transformers==4.33.0 datasets==2.14.4 tqdm pynvml
Now it seems working properly.