Post your solutions to the Nov 15 In-Class Exercise to this thread.
Best, Chris
Name: Kunal Deshmukh <nowiki> for Threshold = 2 Feature Map:
1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0</nowiki>
No of neurons = 4*4
(Edited: 2017-11-15)Feature Map Image 1:
| { |
|---|
| 2 |
| - |
| 0 |
| - |
| 1 |
| - |
| 0 |
| } |
Feature Map Image 2:
| { |
|---|
| 0 |
| - |
| 1 |
| - |
| 1 |
| - |
| 0 |
| } |
No. of Neurons = 16
(Edited: 2017-11-15)Using the identity function as activation
For the 1st image:
[[2,0,1,0],[0,2,0,1],[1,0,2,0],[0,1,0,2]]
For the second image:
[[0,1,1,0],[1,1,2,1],[1,2,1,1],[0,1,1,0]]
Feature Map 1:
[[2,0,1,0],[0,2,0,1],[1,0,2,0],[0,1,0,2]]
Feature Map 2:
[[0,1,1,0],[1,1,2,1],[1,2,1,1],[0,1,1,0]]
Number of neurons = (n - k + 1) (m - k + 1), where n =5, n=5, k = 2
Number of neurons = 16
(Edited: 2017-11-15)