Posts

Showing posts from September, 2020

Dimensionality Reduction

Image
Dimensionality reduction is the process of reducing the number of random variables under consideration, by obtaining a set of principal variables. Components of Dimensionality Reduction There are two components of dimensionality reduction: Feature selection:  In this, we try to find a subset of the original set of variables, or features, to get a smaller subset that can be used to model the problem. It usually involves three ways: Filter Wrapper Embedded Feature extraction:  This reduces the data in a high dimensional space to a lower dimension space, i.e. a space with a lesser no. of dimensions. The various methods used for dimensionality reduction include: Principal Component Analysis (PCA) Linear Discriminant Analysis (LDA) Generalized Discriminant Analysis (GDA) Dimensionality reduction may be both linear or non-linear, depending upon the method used. Principal Component Analysis(PCA) Condition - W hile the data in a higher-dimensional space is mapped to data in a lower d...

ACTIVATION FUNCTION

Activation function decides, whether a neuron should be activated or not by calculating weighted sum and further adding bias with it. The purpose of the activation function is to introduce non-linearity into the output of a neuron. In a neural network, we would update the weights and biases of the neurons on the basis of the error at the output. This process is known as back-propagation. A neural network without an activation function is essentially just a linear regression model.   https://www.geeksforgeeks.org/activation-functions-neural-networks/ https://www.geeksforgeeks.org/activation-functions/?ref=rp https://towardsdatascience.com/everything-you-need-to-know-about-activation-functions-in-deep-learning-models-84ba9f82c253#:~:text=Simply%20put%2C%20an%20activation%20function,fired%20to%20the%20next%20neuron.

GRADIENT DESCENT

https://www.geeksforgeeks.org/gradient-descent-algorithm-and-its-variants/?ref=lbp   https://towardsdatascience.com/batch-mini-batch-stochastic-gradient-descent-7a62ecba642a