Home

Awesome

Paladin

Demo

A short instruction video here: https://youtu.be/PdOSHE7ubJM

System Requirements

Paladin needs to use nVidia GPU for training models. You need to install CUDA 10.1.

Installation using the source code

  1. Get source code

  2. Create a new virtual environment

python3 -m venv /path/to/venv
source /path/to/venv/bin/activate
  1. Install requires package
pip3 install -r requirements.txt
  1. Install apex
git clone https://www.github.com/nvidia/apex
cd apex
python setup.py install
  1. Create database
python3 manage.py makemigrations server
python3 manage.py migrate
  1. Create admin user
python3 manage.py createsuperuser
  1. Run the application
python3 manage.py runserver
  1. Use a web browser and navigate to 127.0.0.1:8000