NB: The code base was developed using python 2.7.17
- Create a virtualenv
python -m virtualenv .venv
- Activate virtualenv
source .venv/bin/activate
- Install python dependencies
pip install -r requirements.txt
- Train model
python train.py
You can choose any model; defined in models.py
.
Visit https://aegs-ai.herokuapp.com
You can also test it locally. Use the commands below:
cd ui
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver