Skip to content

Commit f3a9052

Browse files
Programmer-RD-AIProgrammer-RD-AI
andcommitted
Update 05.ipynb
Co-Authored-By: Ranuga <[email protected]>
1 parent ef3a895 commit f3a9052

File tree

1 file changed

+46
-1
lines changed

1 file changed

+46
-1
lines changed

05.ipynb

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,54 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "1bd9ec5f-fbb8-4f28-b911-1f2b31927c67",
6+
"metadata": {},
7+
"source": [
8+
"# What is Transfer learning?\n",
9+
"\n",
10+
"Transfer learning is a technique in machine learning in which knowledge learned from a task is re-used in order to boost performance on a related task. For example, for image classification, knowledge gained while learning to recognize cars could be applied when trying to recognize trucks. Wikipedia\n",
11+
"\n",
12+
"## Why use transfer learning?\n",
13+
"1. Can leverage an existing neural network architecture proven to work on problems similar to our own\n",
14+
"2. Can leverage a woring network architecture which has already learned patterns on similar data to our own (so great performence with low data)"
15+
]
16+
},
17+
{
18+
"cell_type": "code",
19+
"execution_count": 1,
20+
"id": "1129b80d-f36f-46b9-9355-e9e2968c681f",
21+
"metadata": {},
22+
"outputs": [
23+
{
24+
"data": {
25+
"text/plain": [
26+
"('1.9.1', '0.10.1')"
27+
]
28+
},
29+
"execution_count": 1,
30+
"metadata": {},
31+
"output_type": "execute_result"
32+
}
33+
],
34+
"source": [
35+
"import torch\n",
36+
"import torchvision\n",
37+
"torch.__version__,torchvision.__version__"
38+
]
39+
},
40+
{
41+
"cell_type": "code",
42+
"execution_count": null,
43+
"id": "c029fad0-6880-49d5-b677-8d7ddbd79504",
44+
"metadata": {},
45+
"outputs": [],
46+
"source": []
47+
},
348
{
449
"cell_type": "code",
550
"execution_count": null,
6-
"id": "155d404c-dc1d-4837-9d27-87034bb7ab67",
51+
"id": "11d88c75-4a1f-42be-aef9-119fb66c32b0",
752
"metadata": {},
853
"outputs": [],
954
"source": []

0 commit comments

Comments
 (0)