Skip to content

Commit 033f45c

Browse files
authored
Merge pull request #321 from Visual-Behavior/docker_torch1.13
Docker torch1.13 PL 1.9 - Transform p=1.0
2 parents 469114d + 2efae6f commit 033f45c

7 files changed

+88
-22
lines changed

Dockerfile

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# tagged aloception-oss:cuda-11.3.1-pytorch1.10.1-lightning1.4.1
2+
3+
FROM nvidia/cuda:11.3.1-cudnn8-devel-ubuntu20.04
4+
#FROM nvidia/cuda:11.6.0-cudnn8-devel-ubuntu20.04
5+
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
11+
ARG pycyda=11.7
12+
13+
ENV TZ=Europe/Paris
14+
ENV DEBIAN_FRONTEND=noninteractive
15+
16+
RUN apt-get update
17+
RUN apt-get install -y build-essential nano git wget libgl1-mesa-glx
18+
19+
# Usefull for scipy
20+
RUN apt-get install -y gfortran
21+
# required for aloscene
22+
RUN apt-get install -y libglib2.0-0
23+
24+
25+
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
26+
RUN bash Miniconda3-latest-Linux-x86_64.sh -b -p /miniconda
27+
ENV PATH=$PATH:/miniconda/condabin:/miniconda/bin
28+
RUN /bin/bash -c "source activate base"
29+
ENV HOME /workspace
30+
WORKDIR /workspace
31+
32+
# Pytorch & pytorch litning
33+
RUN conda install pytorch==${pytorch} torchvision==${torchvision} torchaudio==${torchaudio} pytorch-cuda=${pycuda} -c pytorch -c nvidia
34+
RUN pip install pytorch_lightning==${pytorch_lightning}
35+
36+
COPY requirements-torch1.13.1.txt /install/requirements-torch1.13.1.txt
37+
RUN pip install -r /install/requirements-torch1.13.1.txt

README.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<a href="https://visual-behavior.github.io/aloception-oss/">Documentation</a>
66

7-
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-0.3.0-green.svg)](https://conventionalcommits.org)
7+
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-0.5.0-green.svg)](https://conventionalcommits.org)
88

99
# Aloception open source software
1010

@@ -75,6 +75,26 @@ training pipelines with **augmented tensors**.
7575

7676
## Installation
7777

78+
### Docker install
79+
80+
```
81+
docker build -t aloception-oss:cuda-11.3.1-pytorch1.13.1-lightning1.9.0 .
82+
```
83+
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
86+
```
87+
88+
Or without building the image
89+
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
92+
```
93+
94+
95+
96+
### Pip install
97+
7898
You first need to install PyTorch 1.10.1 based on your hardware and environment
7999
configuration. Please refer to the [pytorch website](https://pytorch.org/get-started/locally/) for this installation.
80100

alodataset/transforms.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
class AloTransform(object):
17-
def __init__(self, same_on_sequence: bool = True, same_on_frames: bool = False, p: float = 0.5):
17+
def __init__(self, same_on_sequence: bool = True, same_on_frames: bool = False, p: float = 1.0):
1818
"""Alo Transform. Each transform in the project should
1919
inhert from this class.
2020
@@ -772,7 +772,6 @@ def apply(self, frame: Frame):
772772
-------
773773
n_frame: aloscene.Frame
774774
"""
775-
776775
n_frame = frame.norm01()
777776

778777
frame_data = n_frame.data.as_tensor()

requirements-torch1.13.1.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

requirements.txt

-18
This file was deleted.

unittest/test_frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def tensor_equal(frame1, frame2):
3030

3131
def test_frame_from_dt():
3232
# Go through the loaded sequence
33-
for data in waymo_dataset.stream_loader():
33+
for data in waymo_dataset.stream_loader(num_workers=1):
3434
assert data["front"].shape[:2] == (2, 3)
3535
assert data["front"].names == ("T", "C", "H", "W")
3636
# It should be instance of list since the dataset return a sequence and the

unittest/test_transformation.py

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from alodataset import transforms as T
33
import numpy as np
44
import torch
5+
import random
56

67

78
def test_color_jitter():
@@ -78,4 +79,10 @@ def test_color_jitter():
7879

7980

8081
if __name__ == "__main__":
82+
# seed everything
83+
seed = 42
84+
random.seed(seed)
85+
np.random.seed(seed)
86+
torch.manual_seed(seed)
87+
torch.cuda.manual_seed_all(seed)
8188
test_color_jitter()

0 commit comments

Comments
 (0)