Neural_Network_Charity_Analysis

Neural Networks and Deep Learning Models

Neural_network_Image

Image source: dataconomy

Background

Overview of Analysis

This project consists of three technical analysis deliverables and a written report.

Purpose

To help a foundation predict where to make investments, using machine learning and neural networks, we’ll use the features in the provided dataset to create a binary classifier that is capable of predicting whether applicants will be successful if funded by the fundation.

Resources

Data source:

Software:


Methodology

D1: Preprocessing Data for a Neural Network Model

Using Pandas and the Scikit-Learn’s StandardScaler(), we’ll need to preprocess the dataset in order to compile, train, and evaluate the neural network model later in Deliverable 2.


D2: Compile, Train, and Evaluate the Model

Using TensorFlow, we’ll design a neural network, or deep learning model, to create a binary classification model that can predict if an Alphabet Soup–funded organization will be successful based on the features in the dataset. You’ll need to think about how many inputs there are before determining the number of neurons and layers in your model. Once you’ve completed that step, you’ll compile, train, and evaluate your binary classification model to calculate the model’s loss and accuracy.


Deliverable 3: Optimize the Model

Using TensorFlow, optimize your model in order to achieve a target predictive accuracy higher than 75%. If you can’t achieve an accuracy higher than 75%, you’ll need to make at least three attempts to do so.


Results Overview:

D1: Preprocessing Data for a Neural Network Model

The following preprocessing steps have been performed on the crypto_df DataFrame:

X_test_scaled

Figure (1.1) X_test_scaled DataFrame: X DataFrame have been standardized using the StandardScaler fit_transform() function.


D2: Compile, Train, and Evaluate the Model

The neural network model using Tensorflow Keras contains working code that performs the following steps:

The compiled model and model evaluation are shown below, Figure 1.2 -1.3

compiled_model_D2

Figure (1.2) Compiled model for D2


model_evaluation

Figure (1.3) D2 model evaluation


D3_1:

The model is optimized, and the predictive accuracy is increased to over 75%, or there is working code that makes three attempts to increase model performance using the following steps:

compiled_model_D3_1

Figure (1.4) Compiled model D3_1


Elbow_curve

Figure (1.5) D3_1 model evaluation


D3_2

compiled_model_D3_2

Figure (1.6) Compiled Model D3_2


D3_2 model evaluation

Figure (1.7) D3_2 model evaluation


D3_3

compiled_model_D3_3

Figure (1.8) D3_3 Compiled Model D3_3


D3_3 model evaluation

Figure (1.9) D3_3 model evaluation



Results Discussion:

Data Preprocessing:

Compiling, Training, and Evaluating the Model:

Additional analysis: RandoForest benchmark comparison:

A becnchmark analysis was performed using RandomForest for comparison with another model:

model_evaluation_RandomForest

Figure (1.10) RandomForestClasifier - model evaluation


Confusion_Matrix

Figure (1.11) RandomForestClasifier - ConfusionMatrix


Clasification_report

Figure (1.12) Clasification_report


Top_Ten_features_df

Figure (1.13) Top Ten features_df


Top_Ten_features_df_visualization

Figure (1.14) Top Ten features visualization


Summary

On this project, we worked primarily with , and build on this by using using Tensorflow Keras to create a neural network model which employs many different features to predict where to make investments. The original model achived an accuracy of 72%

Then we did 3 attempts to optimize our model with the following results:

As we can see with the first to attempts we did not achived our targeted goal of 75%, but in our 3rd attempt we achived the target with a 79%

As part of this analysis a bechnark analysis using RandomForest was performed. The model achived an accuracy of 78%, meeting our target. Additionally this model runned faster and provided feature_importances information. Therefore this would be another model that could be use for our predictive model.

References

Markdown

scikit-learn

TensorFlow

matplotlib