Show Menu
Cheatography

Neural Nets cheat sheet Cheat Sheet (DRAFT) by

This is a draft cheat sheet. It is a work in progress and is not finished yet.

INTRO

Artificial Intell­igence is an approach to make a computer, a robot, or a product to think how smart human think. AI is a study of how human brain think, learn, decide and work, when it tries to solve problems. And finally this study outputs intell­igent software system­s.The aim of AI is to improve computer functions which are related to human knowledge, for example, reasoning, learning, and proble­m-s­olving.

Neural Nets

The basic idea behind a neural network is to simulate (copy in a simplified but reasonably faithful way) lots of densely interc­onn­ected brain cells inside a computer so you can get it to learn things, recognize patterns, and make decisions in a humanlike way. The amazing thing about a neural network is that you don't have to program it to learn explic­itly: it learns all by itself, just like a brain!

Layers

 

Linear Regres­sion

 
a supervised machine learning algorithm where the predicted output is continuous and has a constant slope. It’s used to predict values within a continuous range, (e.g. sales, price) rather than trying to classify them into categories (e.g. cat, dog).

Gradient descent

Gradient descent is an optimi­zation algorithm used to minimize some function by iterat­ively moving in the direction of steepest descent as defined by the negative of the gradient. In machine learning, we use gradient descent to update the parameters of our model. Parameters refer to coeffi­cients in Linear Regression and weights in neural networks.

Gradient descent

Gradient descent is an optimi­zation algorithm used to minimize some function by iterat­ively moving in the direction of steepest descent as defined by the negative of the gradient. In machine learning, we use gradient descent to update the parameters of our model. Parameters refer to coeffi­cients in Linear Regression and weights in neural networks.