Skip to content

Commit 87e3603

Browse files
committed
Intro to CV Update READMEs and file structure
1 parent b0ebc95 commit 87e3603

File tree

3 files changed

+26
-55
lines changed

3 files changed

+26
-55
lines changed

2023/SP23/intro-cv-series/README.md

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ intro-cv-series
4646
| -- workshop-1
4747
| -- [Workshop 1 Resources]
4848
| -- ...
49-
| -- Default_Main_Header_Dark.png
50-
| -- Default_Main_Header_Light.png
49+
| -- CV_Main_Header_Dark.png
50+
| -- CV_Main_Header_Light.png
5151
| -- ...
5252
| -- README.md
5353
```
@@ -60,45 +60,27 @@ intro-cv-series
6060

6161
# 2. Getting Started
6262

63-
## 2.1 Workshop 1 - Intro to CV: Pytorch and Neural Networks
63+
## 2.1 Workshop 1 - Intro to CV: Pytorch and Image Classification
6464

6565
<!--
6666
You can write something up for each worksop or use their marketing descriptions.
6767
-->
6868

69-
An introduction to Pytorch, basic machine learning formulations, and neural networks. This workshop will lead students through developing a multi layer neural network to classify handwritten digits from the MNIST dataset, and provide the foundation and intuitions for students to begin tackling basic computer vision problems on their own, and empower their own learning.
70-
71-
Slides:
72-
<!--
73-
SECTION: Resources
74-
---------
75-
Make sure to cite everything you use, whether directly or for inspiration!
76-
-->
69+
Interested in learning about Computer Vision - teaching computers to process and classify images? Come to our 1st of 3 Intro to CV Workshops this quarter! In this workshop, participants will receive a code-focused, interactive introduction to Pytorch, Neural Networks, and Image Classification in MNIST. Make sure to bring a computer, as we will have interactive notebooks for participants to code along with the presenters.
7770

7871
## 2.2 Workshop 2 - Intro to CV: Convolutional Neural Networks
7972

8073
<!--
8174
You can write something up for each worksop or use their marketing descriptions.
8275
-->
8376

84-
N/A
85-
86-
Slides:
87-
<!--
88-
SECTION: Resources
89-
---------
90-
Make sure to cite everything you use, whether directly or for inspiration!
91-
-->
9277

9378
## 2.3 Workshop 3 - Intro to CV
9479

9580
<!--
9681
You can write something up for each worksop or use their marketing descriptions.
9782
-->
9883

99-
N/A
100-
101-
Slides:
10284

10385
<!--
10486
SECTION: Resources
@@ -110,8 +92,6 @@ Slides:
11092

11193
## 3.1 Workshop 1 - Intro to CV: Pytorch and Neural Networks
11294

113-
-
114-
11595
## 3.2 Workshop 2 - Intro to CV: Convolutional Neural Networks
11696

11797
## 3.3 Workshop 3 - Intro to CV

2023/SP23/intro-cv-series/workshop-1/README.md

Lines changed: 22 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -44,29 +44,8 @@ The official ACM AI **Intro to CV: Pytorch and Neural Networks** repository. Her
4444
is posted to the ACMUCSD YT channel (https://www.youtube.com/channel/UCyjPATFqc3FwOiuqJ2UG1Eg), replace the text with an <img> element.
4545
-->
4646

47-
# 1. Getting Started
4847

49-
<!--
50-
You can write something up or use the marketing description.
51-
-->
52-
53-
## 1.1 Environment Setup
54-
55-
```
56-
conda env create -f environment.yaml
57-
conda activate ai
58-
```
59-
60-
Workshop "Intro to CV: Neural Networks" consists of 2 components:
61-
- [Notebook](<!-- Local Path to Notebook -->) with completed code and explanations.
62-
- [Slide Deck](<!-- Local Path to Slide Deck -->) for the presentation slides
63-
64-
<!--
65-
Note: The above list will depend on your specific workshop.
66-
-->
67-
68-
69-
# 2. Workshop Video
48+
# 1. Workshop Recording
7049

7150
*Will be added as soon as uploaded to YouTube*
7251

@@ -88,23 +67,35 @@ Workshop "Intro to CV: Neural Networks" consists of 2 components:
8867
Write out your File Directory Structure below (make sure it's up-to-date)
8968
-->
9069

91-
# 3. File Directory Structure
70+
# 2. File Directory Structure
9271

9372
```bash
94-
intro-ai-series
73+
workshop-1
9574
| -- figures
96-
| -- DefaultW1_Header_Dark.png
97-
| -- DefaultW1_Header_Light.png
98-
| -- src
99-
| -- videos # where the videos of our agent traversing the FrozenLake grid are stored
100-
| -- main.py # calls the core search algorithms
101-
| -- search.py # where we define the core search algorithms for our AI agent
102-
| -- test.py # for testing determinstic trajectories in FrozenLake enviroment
75+
| -- CVW1_Header_Dark.png
76+
| -- CVW1_Header_Light.png
77+
| -- Main_Notebook_Intro_to_CV_Workshop_1_Pytorch_and_Image_Classification.ipynb
78+
| -- Interactive_Notebook_Intro_to_CV_Workshop_1_Pytorch_and_Image_Classification.ipynb
10379
| -- README.md
80+
10481
```
10582

10683
<!--
10784
SECTION: Getting Started
10885
---------
10986
Brief description of your workshop here
87+
-->
88+
89+
## 3 Getting Started
90+
91+
Interested in learning about Computer Vision - teaching computers to process and classify images? Come to our 1st of 3 Intro to CV Workshops this quarter! In this workshop, participants will receive a code-focused, interactive introduction to Pytorch, Neural Networks, and Image Classification in MNIST. Make sure to bring a computer, as we will have interactive notebooks for participants to code along with the presenters.
92+
93+
Workshop 1 consists of 4 components:
94+
- [Presentation](./presentation-resources/) used during the workshop.
95+
- [Main Notebook](./Main_Notebook_Intro_to_CV_Workshop_1_Pytorch_and_Image_Classification.ipynb) with completed code and explanations.
96+
- [Interactive Notebook](./Interactive_Notebook_Intro_to_CV_Workshop_1_Pytorch_and_Image_Classification.ipynb) with questions and exercises for the reader.
97+
- [Summary Graphic](./presentation-resources/) to summarize key points of the workshop.
98+
99+
<!--
100+
Note: The above list will depend on your specific workshop.
110101
-->

0 commit comments

Comments
 (0)