-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
34 lines (29 loc) · 697 Bytes
/
build.sh
File metadata and controls
34 lines (29 loc) · 697 Bytes
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
set -o xtrace
setup_root() {
apt-get install -qq -y \
python3-pip \
python3-tk \
git
pip3 install -qq \
pytest \
scikit-image \
scikit-learn \
opencv-python \
matplotlib \
imgaug \
pandas \
pytorch-ignite \
albumentations==1.3.0 \
torch==1.12.1 \
torchvision==0.13.1 \
pytorch_lightning==1.7.7 \
efficientnet_pytorch \
albumentations_experimental \
timm==0.6.11 \
moviepy
pip3 install -qq git+https://github.com/katsura-jp/pytorch-cosine-annealing-with-warmup
}
setup_checker() {
python3 -c 'import matplotlib.pyplot'
}
"$@"