Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
data/
*.pyc
*.log
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM pytorch/pytorch:1.3-cuda10.1-cudnn7-devel

RUN apt update
RUN apt install -y wget libglib2.0-0 libsm6 libxext6 libxrender1

COPY requirements.txt /requrements.txt
RUN pip install -r /requrements.txt

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ pip install -r requirements.txt
conda deactivate
```

### Docker Env with [Nvidia-docker](https://github.com/NVIDIA/nvidia-docker)
```bash
docker build -t asen_img .
docker run --rm --gpus all -v $(pwd)/:/asen -ti asen_img /bin/bash
cd /asen; # inside container
```

### Download Data

#### Dataset Split
Expand Down