Skip to content
Snippets Groups Projects
Commit ba7300b3 authored by cocoalex00's avatar cocoalex00
Browse files

minimal changes to readme and up to date dockerfile

parent 2379c163
No related branches found
No related tags found
No related merge requests found
......@@ -6,19 +6,19 @@ Re-implementation of the paper "[*EDeNN: Event Decay Neural Networks for low lat
Brings the characteristics of convolutions to event cameras, while acting on the event stream without a loss of information like traditional convolution-bsed networks.
## (Old) Installation [Once the code is finished this will be updated]
## Installation [Once the code is finished this will be updated where needed]
1. Clone this repository
```bash
git clone https://gitlab.surrey.ac.uk/cw0071/edenn.git
git clone https://gitlab.surrey.ac.uk/ah02299/edenn.git
cd ./edenn/
```
1. Set up conda environment
```bash
conda env create -f environment.yml
conda env create -f docker/environment.yml
conda activate edenn
pip install -e .
```
......@@ -55,7 +55,7 @@ Brings the characteristics of convolutions to event cameras, while acting on the
rm ./data/test.tar
```
## Usage
## Usage (from the old EdeNN code)
### Testing
......
FROM nvidia/cuda:12.3.1-devel-ubuntu22.04
# Dockerfile containing the necessary requirements to run the edenn++ repository
# It also needs to have the environment.yml file describing the conda env in the same directory so it can be accessed here.
FROM nvidia/cuda:11.3.1-devel-ubuntu20.04
MAINTAINER Alejandro Hernández Díaz
# Update all that stuff to make it niceeee
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y build-essential \
&& apt-get install -y build-essential ffmpeg libsm6 libxext6 \
&& apt-get install -y wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Install miniconda
ENV CONDA_DIR /opt/conda
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment