{
"cells": [
{
"cell_type": "markdown",
"id": "20fce00f",
"metadata": {},
"source": [
"### Deep Learning\n",
"#### Artificial neuron \n",
"An **artificial neuron** gets an input vector $\\boldsymbol{x}$ and produces a scalar value $y$, which is modeled by the following equation:\n",
"
$\\large y=\\phi(\\boldsymbol{x}^T\\boldsymbol{w}+b)=\\phi(\\boldsymbol{w}^T\\boldsymbol{x}+b)$\n",
"
Where $b$ is the bias. The weight vector is $\\boldsymbol{w}=[w_1,w_2,...,w_m]^T$. The input vector is $\\boldsymbol{x}=[x_1,x_2,...,x_m]^T$. The $\\phi$ is an activation function. \n",
"- Common activation functions are: *Logistic*, *ReLU*, *Tanh*, and *Linear*.\n",
"\n",
"