This repo contains Artificial Neural Network model for regression analysis. Also the program compares results with MLP Regressor model provided by Scikit-learn package.
Install required packages:
pip install -r requirements.txt
Generate a dataset before using the model.
python3 dataset_generator.py -f [DATASET_FILE] -l [DATASET_LENGTH]
Run the model with generated dataset:
python3 nn_regression.py -f [DATASET_FILE]
You can also tune hidden layer size by passing arguments from the command line:
python3 nn_regression.py -f [DATASET_FILE] -H 100