Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.22 KB

README.md

File metadata and controls

38 lines (31 loc) · 1.22 KB

GRNN Web App

Demo of the app

This is an web application for modeling, training and testing General Regression Neural Networks (GRNN). It is developed with Flask and React. It helps you tweak model parameters to achieve better error scores.

Demo can be seen here.

Installation

It is optional yet advised to run the app inside a virtual environment. venv can be used as follows. Make sure you are in the project directory!

  1. First create an environment named "venv" inside the project directory:
python3 -m venv venv
  1. Activate the new environment:
. /venv/bin/activate
  1. In the environment, install the dependencies using pip:
pip install -e .

Start with Local Server

  1. Register your app to your terminal via following commands:
export FLASK_APP=main.py # Entry point of the app
export FLASK_ENV=development # or production
  1. Finally, run the app:
flask run

The app should be live on http://127.0.0.1:5000/.

Usage

There are two example csv datasets in example_datasets folder that you can use for testing. Just open the app and follow the flow.