Skip to content

Commit 9bf0041

Browse files
Programmer-RD-AIProgrammer-RD-AI
andcommitted
G
Co-Authored-By: Ranuga <[email protected]>
1 parent d4c732a commit 9bf0041

File tree

3 files changed

+127
-0
lines changed

3 files changed

+127
-0
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "d2a7fee3-2187-47bd-9bd1-728eb967c92f",
6+
"metadata": {},
7+
"source": [
8+
"# CNN\n",
9+
"\n",
10+
"A type artifical neural network, it has convolutional and non covolutional layers\n",
11+
"\n",
12+
"There are many filters in the convolutional layers and they have specific tasks of detecting certain parts of the image for example textures, edges, etc...\n",
13+
"\n",
14+
"Essentially there is filter where it goes over the image this is the kernal size then it produces a product of the output and this happens over and over again, the weights and bias of the filter is what is changed overtime"
15+
]
16+
},
17+
{
18+
"cell_type": "markdown",
19+
"id": "fcf29831-9d66-4746-8da0-17b93e5c0da9",
20+
"metadata": {},
21+
"source": [
22+
"# Max Pool\n",
23+
"\n",
24+
"Reduces the no. of pixels\n",
25+
"\n",
26+
"We give a filter size, the stride is how many pixels the filter moves\n",
27+
"\n",
28+
"From every filter uses it takes the highest one \n",
29+
"\n",
30+
"Its helful becz it reduces parameters() and computational needs and reduce over fitting, this is due to a sort of generalisation "
31+
]
32+
},
33+
{
34+
"cell_type": "code",
35+
"execution_count": null,
36+
"id": "2953d201-aede-45ad-9607-d9f1081dbdde",
37+
"metadata": {},
38+
"outputs": [],
39+
"source": []
40+
}
41+
],
42+
"metadata": {
43+
"kernelspec": {
44+
"display_name": "Python 3 (ipykernel)",
45+
"language": "python",
46+
"name": "python3"
47+
},
48+
"language_info": {
49+
"codemirror_mode": {
50+
"name": "ipython",
51+
"version": 3
52+
},
53+
"file_extension": ".py",
54+
"mimetype": "text/x-python",
55+
"name": "python",
56+
"nbconvert_exporter": "python",
57+
"pygments_lexer": "ipython3",
58+
"version": "3.8.8"
59+
}
60+
},
61+
"nbformat": 4,
62+
"nbformat_minor": 5
63+
}

.virtual_documents/Theory_03.ipynb.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Theory_03.ipynb

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "d2a7fee3-2187-47bd-9bd1-728eb967c92f",
6+
"metadata": {},
7+
"source": [
8+
"# CNN\n",
9+
"\n",
10+
"A type artifical neural network, it has convolutional and non covolutional layers\n",
11+
"\n",
12+
"There are many filters in the convolutional layers and they have specific tasks of detecting certain parts of the image for example textures, edges, etc...\n",
13+
"\n",
14+
"Essentially there is filter where it goes over the image this is the kernal size then it produces a product of the output and this happens over and over again, the weights and bias of the filter is what is changed overtime"
15+
]
16+
},
17+
{
18+
"cell_type": "markdown",
19+
"id": "fcf29831-9d66-4746-8da0-17b93e5c0da9",
20+
"metadata": {},
21+
"source": [
22+
"# Max Pool\n",
23+
"\n",
24+
"Reduces the no. of pixels\n",
25+
"\n",
26+
"We give a filter size, the stride is how many pixels the filter moves\n",
27+
"\n",
28+
"From every filter uses it takes the highest one \n",
29+
"\n",
30+
"Its helful becz it reduces parameters() and computational needs and reduce over fitting, this is due to a sort of generalisation "
31+
]
32+
},
33+
{
34+
"cell_type": "code",
35+
"execution_count": null,
36+
"id": "2953d201-aede-45ad-9607-d9f1081dbdde",
37+
"metadata": {},
38+
"outputs": [],
39+
"source": []
40+
}
41+
],
42+
"metadata": {
43+
"kernelspec": {
44+
"display_name": "Python 3 (ipykernel)",
45+
"language": "python",
46+
"name": "python3"
47+
},
48+
"language_info": {
49+
"codemirror_mode": {
50+
"name": "ipython",
51+
"version": 3
52+
},
53+
"file_extension": ".py",
54+
"mimetype": "text/x-python",
55+
"name": "python",
56+
"nbconvert_exporter": "python",
57+
"pygments_lexer": "ipython3",
58+
"version": "3.8.8"
59+
}
60+
},
61+
"nbformat": 4,
62+
"nbformat_minor": 5
63+
}

0 commit comments

Comments
 (0)