File size: 379 Bytes
f70e4f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#!/bin/bash
conda env remove --name qMTEB -y
conda create --name qMTEB python=3.9 -y
source activate qMTEB
conda install -c intel openmp
conda install nomkl
conda install pytorch torchvision -c pytorch
conda install -c conda-forge sentence-transformers
conda install -c huggingface transformers
pip install mteb
rm -rf results/
source link.sh
echo "Setup completed!"
|