Coder Social home page Coder Social logo

venture_funding_with_deep_learning_with_tensorflow's Introduction

Venture Funding with Deep Learning

Overview

This neural network model is used to create a prediction application to learn the applicants' successful rate if funded by Alphabet Soup. The preiction application takes into account four different alternative models as a way to learn different techniques on the neural network model that could potentially increase the model accuracy and decrease the model loss.


Technologies

This project leverages python version 3.8.5 with the following packages and modules:

  • pandas - This was used to be able to easily manipulate dataframes.

  • Jupyter Lab - This was used to be able to create and share documents that contain live code, equations, visualizations and narrative text.

  • Scikit Learn - version 0.24.2 - This package has a lot of different tools and model that could be use to create a machine learning model.

  • TensorFlow - version 2.6.0 - This is an end-to-end open source platform for machine learning. It has a comprehensive, flexible ecosystem of tools, libraries, and community resources that lets researchers push the state-of-the-art in ML and developers easily build and deploy ML-powered applications.

  • Keras - version 2.6.0 - This is an API designed for human beings, not machines. Keras follows best practices for reducing cognitive load: it offers consistent & simple APIs, it minimizes the number of user actions required for common use cases, and it provides clear & actionable error messages. It also has a free open source Python library for developing and evaluating deep learning models.

    • layers Dense - This implements the operation: output = activation(dot(input, kernel) + bias) where activation is the element-wise activation function passed as the activation argument, kernel is a weights matrix created by the layer, and bias is a bias vector created by the layer (only applicable if use_bias is True).

    • models Sequential - This is used appropriately for a plain stack of layers where each layer has exactly one input tensor and one output tensor.

    • layers LeakyReLU - This is a “leaky” alternative to the ReLU function. This means that instead of transforming negative input values to 0, it transforms negative input values into much smaller negative values.

    • ReLU - The rectified linear unit (ReLU) function returns a value from 0 to infinity. This activation function transforms any negative input to 0. It is the most commonly used activation function in neural networks due to its faster learning and simplified output. However, it is not always appropriate for simpler models.

  • PyVizlot - Python visualization package that provides a single platform for accessing multiple visualization libraries. Two of the libraries are:

    • hvplot.pandas - version 0.7.2 - For the interactive visualization of the crowdfunding data.

Installation Guide

1. Installing and Running Jupyter notebook

On the terminal, under the conda dev environment, type the code below:

pip install jupyterlab

* Opening Jupyter notebook

If you have Jupyter Lab already installed, to open your Notebook and be able to view your hidden files, please type this while on your conda dev environment:

jupyter lab --ContentsManager.allow_hidden=True

Once you click ENTER, this will open on your default browser.

Open Jupyter Lab


2. Installing Scikit-learn

  • To install the Scikit-learn, check that your development environment is active, and then run the following command:

    pip install -U scikit-learn

  • To check if scikit-learn is already installed, you can run the following code on your dev environment:

    conda list scikit-learn

Install Scikit-learn


3. Installing TensorFlow (TF)

  • To install the TensorFlow, check that your development environment is active, and then run the following command:

    pip install --upgrade tensorflow

  • To verify if TensorFlow is already installed, you can run the following code on your dev environment:

    python -c "import tensorflow as tf;print(tf.__version__)"


4. Keras

  • To verify if Keras is already installed, you can run the following code on your dev environment:

    python -c "import tensorflow as tf;print(tf.keras.__version__)"


Examples

Here are some of the data we did for this model.

ActivationReLU

Neural Nodes Layer


Usage

To be able to get a good analysis on the prediction analysis, we need to be able to model, fit and predict using activation model ReLU, LeakyReLu and Sigmoid.

model accuracy score and model loss scores

model accuracy and model loss


Contributors

Contributed by: Justine Cho

Email: [email protected]

Linkedin LinkedIn


License

MIT License

Copyright (c) [2021] [Justine Cho]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

venture_funding_with_deep_learning_with_tensorflow's People

Contributors

juzcho avatar

Watchers

 avatar  avatar

Forkers

danny-m108

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.