GithubHelp home page GithubHelp logo

building-deep-neural-network's Introduction

Building-Deep-Neural-Network

Building NN from scratch: These are the methods for building NN:

  1. initialize_parameters_deep(layer_dims) which returns parameters. We should make sure that dimensions match between each layes.
  2. L_model_forward(X, parameters) which return AL, caches
  3. compute_cost(AL, Y) which return cost
  4. L_model_backward(AL, Y, caches) which return grads
  5. update_parameters(parameters, grads, learning_rate) which return parameters I will use two activation functions:

Sigmoid:

alt text

This function returns two items: the activation value "a" and a "cache" that contains "Z"

ReLU:

A = RELU(Z) = max(0, Z)

The model's structure is : [Linear-> Relu] X (L-1) -> Linear -> Sigmoid. I.e., it has L-1 layers using ReLU activation function followed by an output layer with a sigmoid activation function.

We can use random initialization for the weight metrics and zero initialization for biases. After initialization, we will do the forward propagation module by implementing some basic functions: -Linear -Linear -> Activation where Activation will be either ReLU or Sigmoid -[Linear-> Relu] X (L-1) -> Linear -> Sigmoid

building-deep-neural-network's People

Contributors

ghazaltariri avatar

Watchers

 avatar  avatar

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.