• Building blocks of a Deep Neural Network • Deep Learning on Azure • Demo on Azure ML Studio • Building a Deep Neural Network in azure • Questions & Discussions
or system artificially, with or without explicit programming. Machine learning can be defined as the process of inducing intelligence into a system or machine without explicit programming it. DL is a subfield of machine learning (ML) in artificial intelligence (AI) that deals with algorithms inspired from the biological structure and functioning of a brain to aid machines with intelligence.
takes the combined input z applies a function on it, and passes the output value, thus trying to mimic the activate/deactivate function. The activation function, therefore, determines the state of a neuron by computing f(z) on z. Without the Activation function : • The range of the output would be -∞ ≤ output ≤ ∞ • The network will not really learn hence rendered useless f(z)
the model object in Keras. This provides a simple way to create a stack of layers by adding new layers one after the other. The easiest way to define a model is by using the sequential model, which allows easy creation of a linear stack of layers.
group of neurons or a logically separated group in a hierarchical network structure. Some important Layers include: 1. Dense Layer 2. Dropout Layer 3. Convolution Layers 4. Recurrent Layers
network understand whether it is learning in the right direction. Based on the type of data outcome, we have several standard loss functions defined in ML and DL. For regression use cases • Mean Square Error • Mean Absolute Error • Mean Absolute Percentage Error • Mean Square Logarithmic Error For classification use cases • Binary Loss Entropy • Categorical loss Entropy