Skip to content

Commit 22b26c1

Browse files
committed
refactor: Update MaxPool module to handle additional input channels
1 parent ea68e41 commit 22b26c1

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,15 @@ Final Project Grading (40 %)
3737
3. 將你的設計進一步合成出電路做模擬或測試(FPGA Quartus/Vivado Tool或其他)。
3838
4. 提出你自己對設計優化的想法(找老師check)。
3939

40+
41+
## 進階
42+
選擇第5點,在convolution的運算後,再加上一個maxpooling的運算,將convolution的結果進行maxpooling。
43+
```
44+
MaxPool: 2x2 (將整個map 切成4個小區塊,每個小區塊取最大值)
45+
目的: 降低圖像的維度,並保留重要的特徵
46+
convolution後的圖像大小: 6x6 (input: 8x8, kernel: 3x3)
47+
maxpooling後的圖像大小: 2x2 (input: 6x6, 每9個pixel取一個最大值)
48+
```
49+
50+
## 成果展示
51+
![demo](./images/demo.png)

images/demo.png

59.2 KB
Loading

0 commit comments

Comments
 (0)