Skip to content

Commit e8d4356

Browse files
committed
Neural Nets theory
1 parent 46d1007 commit e8d4356

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"cells": [],
3+
"metadata": {},
4+
"nbformat": 4,
5+
"nbformat_minor": 2
6+
}

class_09/NN.ipynb

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Neural Networks\n",
8+
"\n",
9+
"1. Shifting of Vector Space\n",
10+
"2. Multiple Layers\n",
11+
"3. Activation functions (sigmoid, tanh)\n",
12+
"4. Graph like structure\n",
13+
"5. Softmax as final classifier\n",
14+
"\n",
15+
"sigmoid:\n",
16+
"$$\n",
17+
"\\sigma(x) = \\frac{1}{1 + e^{-x}}\n",
18+
"$$\n",
19+
"\n",
20+
"softmax:\n",
21+
"$$\n",
22+
"softmax(x) = \\frac{e^{x}}{\\sum_i e^{x_i}}\n",
23+
"$$\n",
24+
"\n",
25+
"tanh:\n",
26+
"$$\n",
27+
"tanh(x) = \\frac{e^{x} - e^{-x}}{e^{x} + e^{-x}}\n",
28+
"$$"
29+
]
30+
},
31+
{
32+
"cell_type": "code",
33+
"execution_count": null,
34+
"metadata": {
35+
"collapsed": true
36+
},
37+
"outputs": [],
38+
"source": []
39+
}
40+
],
41+
"metadata": {
42+
"kernelspec": {
43+
"display_name": "Python 2",
44+
"language": "python",
45+
"name": "python2"
46+
},
47+
"language_info": {
48+
"codemirror_mode": {
49+
"name": "ipython",
50+
"version": 2
51+
},
52+
"file_extension": ".py",
53+
"mimetype": "text/x-python",
54+
"name": "python",
55+
"nbconvert_exporter": "python",
56+
"pygments_lexer": "ipython2",
57+
"version": "2.7.12"
58+
}
59+
},
60+
"nbformat": 4,
61+
"nbformat_minor": 2
62+
}

0 commit comments

Comments
 (0)