Skip to content

Commit 582e3cc

Browse files
committed
Section 1.1
Adding in information for Section 1.1 (definition of CV, etc)
1 parent 3bf222c commit 582e3cc

File tree

1 file changed

+95
-70
lines changed

1 file changed

+95
-70
lines changed
Lines changed: 95 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,144 +1,169 @@
11
{
2-
"nbformat": 4,
3-
"nbformat_minor": 0,
4-
"metadata": {
5-
"colab": {
6-
"provenance": []
7-
},
8-
"kernelspec": {
9-
"name": "python3",
10-
"display_name": "Python 3"
11-
},
12-
"language_info": {
13-
"name": "python"
14-
}
15-
},
162
"cells": [
173
{
184
"cell_type": "markdown",
19-
"source": [
20-
"# Intro to CV Workshop 1: Getting Started with Computer Vision"
21-
],
225
"metadata": {
236
"id": "lrPpS1rpCK-h"
24-
}
7+
},
8+
"source": [
9+
"# Intro to CV Workshop 1: Getting Started with Computer Vision"
10+
]
2511
},
2612
{
2713
"cell_type": "markdown",
28-
"source": [
29-
"## Section 1 - Overview of Computer Vision\n"
30-
],
3114
"metadata": {
3215
"id": "X_yXZfg-9Fa-"
33-
}
16+
},
17+
"source": [
18+
"## Section 1 - Overview of Computer Vision\n"
19+
]
3420
},
3521
{
3622
"cell_type": "markdown",
37-
"source": [
38-
"### 1.1 Introduction of Computer Vision\n"
39-
],
4023
"metadata": {
4124
"id": "t-rte0n6Jrn5"
42-
}
25+
},
26+
"source": [
27+
"### 1.1 Introduction of Computer Vision\n"
28+
]
4329
},
4430
{
31+
"attachments": {},
4532
"cell_type": "markdown",
33+
"metadata": {},
4634
"source": [
47-
" ### 1.2 The MNIST Dataset"
48-
],
35+
"Welcome to Intro to Computer Vision! This will be a three part workshop series focused on building an overview of the underlying algorithms and applications of Computer Vision. For today's workshop, we'll be focusing on PyTorch - a machine learning framework used for AI applications - and neural networks - the foundational concept underlying computer vision algorithms such as CNN (Convolutional Neural Networks) that power visual imagery analysis. Let's get started!"
36+
]
37+
},
38+
{
39+
"attachments": {},
40+
"cell_type": "markdown",
41+
"metadata": {},
42+
"source": [
43+
"What is Computer Vision? \n",
44+
"\n",
45+
"Computer Vision is a subfield of AI that focuses on computers deriving and understanding information based on visual data - images, videos, etc"
46+
]
47+
},
48+
{
49+
"cell_type": "markdown",
4950
"metadata": {
5051
"id": "LAy-avyOKTPw"
51-
}
52+
},
53+
"source": [
54+
" ### 1.2 The MNIST Dataset"
55+
]
5256
},
5357
{
5458
"cell_type": "markdown",
55-
"source": [
56-
"## Section 2 - Basics of basics"
57-
],
5859
"metadata": {
5960
"id": "TknP7gWmCJvB"
60-
}
61+
},
62+
"source": [
63+
"## Section 2 - Basics of basics"
64+
]
6165
},
6266
{
6367
"cell_type": "markdown",
64-
"source": [
65-
"### 2.1 Pytorch Basics"
66-
],
6768
"metadata": {
6869
"id": "xClsDXlOJNZM"
69-
}
70+
},
71+
"source": [
72+
"### 2.1 Pytorch Basics"
73+
]
7074
},
7175
{
7276
"cell_type": "markdown",
73-
"source": [
74-
"### 2.2 Model Training and Evaluation"
75-
],
7677
"metadata": {
7778
"id": "vKDff4XKJgx_"
78-
}
79+
},
80+
"source": [
81+
"### 2.2 Model Training and Evaluation"
82+
]
7983
},
8084
{
8185
"cell_type": "markdown",
82-
"source": [
83-
"## Section 3 - Formulating a Machine Learning problem "
84-
],
8586
"metadata": {
8687
"id": "pcibKmYR_OTW"
87-
}
88+
},
89+
"source": [
90+
"## Section 3 - Formulating a Machine Learning problem "
91+
]
8892
},
8993
{
9094
"cell_type": "markdown",
91-
"source": [
92-
"(feel free to edit the outline)"
93-
],
9495
"metadata": {
9596
"id": "tIpm_ep-K3lQ"
96-
}
97+
},
98+
"source": [
99+
"(feel free to edit the outline)"
100+
]
97101
},
98102
{
99103
"cell_type": "markdown",
100-
"source": [
101-
"### 3.1 Set up MLP Architecture (NN layers, activation function)\n"
102-
],
103104
"metadata": {
104105
"id": "hanQrmfxCH5C"
105-
}
106+
},
107+
"source": [
108+
"### 3.1 Set up MLP Architecture (NN layers, activation function)\n"
109+
]
106110
},
107111
{
108112
"cell_type": "markdown",
109-
"source": [
110-
"### 3.2 Loss function and Regularization (L1/L2/Dropout)"
111-
],
112113
"metadata": {
113114
"id": "k2zSw1jLKvM9"
114-
}
115+
},
116+
"source": [
117+
"### 3.2 Loss function and Regularization (L1/L2/Dropout)"
118+
]
115119
},
116120
{
117121
"cell_type": "markdown",
118-
"source": [
119-
"### 3.3 Learning and Evaluation (Gradient Descent, SGD)\n"
120-
],
121122
"metadata": {
122123
"id": "ZAqFgipcKx6S"
123-
}
124+
},
125+
"source": [
126+
"### 3.3 Learning and Evaluation (Gradient Descent, SGD)\n"
127+
]
124128
},
125129
{
126130
"cell_type": "markdown",
127-
"source": [
128-
"## Section 4 - Making a MLP piece-by-piece"
129-
],
130131
"metadata": {
131132
"id": "7gJNzxuBLDyv"
132-
}
133+
},
134+
"source": [
135+
"## Section 4 - Making a MLP piece-by-piece"
136+
]
133137
},
134138
{
135139
"cell_type": "markdown",
136-
"source": [
137-
"## Section 5 - Putting it together for CV (Can change this later)"
138-
],
139140
"metadata": {
140141
"id": "tbIiaUguLUoU"
142+
},
143+
"source": [
144+
"## Section 5 - Putting it together for CV (Can change this later)"
145+
]
146+
}
147+
],
148+
"metadata": {
149+
"colab": {
150+
"provenance": []
151+
},
152+
"kernelspec": {
153+
"display_name": "Python 3.10.7 64-bit",
154+
"language": "python",
155+
"name": "python3"
156+
},
157+
"language_info": {
158+
"name": "python",
159+
"version": "3.10.7"
160+
},
161+
"vscode": {
162+
"interpreter": {
163+
"hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49"
141164
}
142165
}
143-
]
144-
}
166+
},
167+
"nbformat": 4,
168+
"nbformat_minor": 0
169+
}

0 commit comments

Comments
 (0)