Getting Started with Odin
Getting Started with Docker
- Download Odin from the GitHub repository.
- Go to the odin folder you have just downloaded:
cd path/to/odin
- Build the odin image from the Dockerfile:
docker build -t odin .
- Run the container:
docker run -it -p 8888:8888 odin
- Go to the folder ‘home/examples’ from the Jupyter Notebook and try the ready-to-use notebooks.
Getting Started with Virtual Environment
- Download Odin from the GitHub repository.
- Go to the odin folder you have just downloaded:
cd path/to/odin
- Create a virtual environment:
python -m venv venv
- Activate the virtual environment just created:
- On MacOS/Linux:
source venv/bin/activate
- On Windows:
.\venv\Scripts\activate
- On MacOS/Linux:
- Install the framework and its requirements:
pip install -e . --user
- N.B. To be able to use the meta-annotation extractor, two more packages need to be installed (tensorflow and mtcnn). Simply execute the following command:
pip install tensorflow mtcnn
- Start a Jupyter Notebook, go to the folder ‘examples’ and try the ready-to-use notebooks.