Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 1.08 KB

README.md

File metadata and controls

50 lines (32 loc) · 1.08 KB

A Django App for Data Analysis/Machine Learning

Life Satisfaction x GDP of Country

This is a simple app in Django to show a machine learning example to predict life satisfaction value based on GDP of the Country.

Installation

  1. Clone this repository:
https://github.com/robstermarinho/django_machine_learning.git

2 - Create the virtual env and activate it

python -m venv venv
venv/bin/activate

3 - Once the virtual env is activated install the project requirements

pip install -r requirements.txt
  1. The simplest way to start a server is running the following command:
python manage.py runserver
  1. Verify the deployment by navigating to the following address in your preferred browser:

127.0.0.1:8000/myapp/gdp/

You can check this application at the link below:

https://mlearning-data.herokuapp.com/myapp/gdp/

Requirements