File tree Expand file tree Collapse file tree 3 files changed +35
-11
lines changed Expand file tree Collapse file tree 3 files changed +35
-11
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ FROM nvidia/cuda:11.3.1-cudnn8-devel-ubuntu20.04
4
4
# FROM nvidia/cuda:11.6.0-cudnn8-devel-ubuntu20.04
5
5
6
6
ARG py=3.9
7
- ARG pytorch=1.13.1
8
- ARG torchvision=0.14.1
9
- ARG torchaudio=0.13.1
10
- ARG pytorch_lightning=1.9.0
7
+ ARG pytorch=2.1.0.dev20230313+cu117
8
+ ARG torchvision=0.15.0.dev20230313+cu117
9
+ ARG torchaudio=2.0.0.dev20230313+cu117
10
+ ARG pytorch_lightning=1.9.3
11
11
ARG pycyda=11.7
12
12
13
13
ENV TZ=Europe/Paris
@@ -30,8 +30,9 @@ ENV HOME /workspace
30
30
WORKDIR /workspace
31
31
32
32
# Pytorch & pytorch litning
33
- RUN conda install pytorch==${pytorch} torchvision==${torchvision} torchaudio==${torchaudio} pytorch-cuda=${pycuda} -c pytorch -c nvidia
33
+ # RUN conda install py pytorch-cuda=${pycuda} -c pytorch -c nvidia
34
+ RUN pip install --pre torch==${pytorch} torchvision==${torchvision} torchaudio==${torchaudio} --index-url https://download.pytorch.org/whl/nightly/cu117
34
35
RUN pip install pytorch_lightning==${pytorch_lightning}
35
36
36
- COPY requirements-torch1.13. 1.txt /install/requirements-torch1.13 .1.txt
37
- RUN pip install -r /install/requirements-torch1.13 .1.txt
37
+ COPY requirements-torch2. 1.txt /install/requirements-torch2 .1.txt
38
+ RUN pip install -r /install/requirements-torch2 .1.txt
Original file line number Diff line number Diff line change 4
4
5
5
<a href =" https://visual-behavior.github.io/aloception-oss/ " >Documentation</a >
6
6
7
- [ ![ Conventional Commits] ( https://img.shields.io/badge/Conventional%20Commits-0.5.0 -green.svg )] ( https://conventionalcommits.org )
7
+ [ ![ Conventional Commits] ( https://img.shields.io/badge/Conventional%20Commits-0.5.1 -green.svg )] ( https://conventionalcommits.org )
8
8
9
9
# Aloception open source software
10
10
@@ -78,17 +78,17 @@ training pipelines with **augmented tensors**.
78
78
### Docker install
79
79
80
80
```
81
- docker build -t aloception-oss:cuda-11.3.1-pytorch1.13.1 -lightning1.9.0 .
81
+ docker build -t aloception-oss:cuda-11.7-pytorch2.1.0 -lightning1.9.3 .
82
82
```
83
83
84
84
```
85
- docker run --gpus all -it -v /YOUR/WORKSPACE/:/workspace --privileged -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix aloception-oss:cuda-11.3.1-pytorch1.13.1 -lightning1.9.0
85
+ docker run --gpus all -it -v /YOUR/WORKSPACE/:/workspace --privileged -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix aloception-oss:cuda-11.7-pytorch2.1.0 -lightning1.9.3
86
86
```
87
87
88
88
Or without building the image
89
89
90
90
```
91
- docker run --gpus all -it -v /YOUR/WORKSPACE/:/workspace --privileged -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix visualbehaviorofficial/aloception-oss:cuda-11.3.1-pytorch1.13.1 -lightning1.9.0
91
+ docker run --gpus all -it -v /YOUR/WORKSPACE/:/workspace --privileged -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix visualbehaviorofficial/aloception-oss:cuda-11.7-pytorch2.1.0 -lightning1.9.3
92
92
```
93
93
94
94
Original file line number Diff line number Diff line change
1
+ pycocotools==2.0.2
2
+ PyYAML==5.4.1
3
+ chardet==4.0.0
4
+ idna==2.10
5
+
6
+ scipy==1.10.0
7
+
8
+ more_itertools==8.8.0
9
+ requests==2.25.1
10
+ opencv-python==4.7.0.68
11
+
12
+ python-dateutil==2.8.2
13
+ urllib3==1.26.6
14
+
15
+ protobuf==4.21.12
16
+ wandb==0.13.9
17
+
18
+ tqdm==4.62.3
19
+ captum==0.4.0
20
+
21
+ setuptools==59.5.0
22
+
23
+ numpy==1.23.5
You can’t perform that action at this time.
0 commit comments