forked from espnet/espnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_lora.sh
executable file
·51 lines (44 loc) · 973 Bytes
/
install_lora.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bash
set -euo pipefail
MAKE=make
if [ $# != 0 ]; then
echo "Usage: $0"
exit 1;
fi
if ! python -c "import packaging.version" &> /dev/null; then
python3 -m pip install packaging
fi
torch_17_plus=$(python3 <<EOF
from packaging.version import parse as V
import torch
if V(torch.__version__) >= V("1.7.0"):
print("true")
else:
print("false")
EOF
)
python_38_plus=$(python3 <<EOF
from packaging.version import parse as V
import sys
if V("{}.{}.{}".format(*sys.version_info[:3])) >= V("3.8.0"):
print("true")
else:
print("false")
EOF
)
cuda_version=$(python3 <<EOF
import torch
if torch.cuda.is_available():
version=torch.version.cuda.split(".")
# 10.1.aa -> 101
print(version[0] + version[1])
else:
print("")
EOF
)
echo "cuda_version=${cuda_version}"
if "${torch_17_plus}" && "${python_38_plus}"; then
python -m pip install loralib
else
echo "[ERROR] lora does not work with pytorch<1.7.0, python<3.8"
fi