snuspl / dolphin

14 stars 2 forks source link

Convolutional layer full implementation #171

Closed ghost closed 8 years ago

ghost commented 8 years ago

After convolutional layer base implementation issue being resolved, feedforwarding function and backpropagating function are left to be given shape to. feedForward() will produce activation by computing product between weight and input pixels within kernel range. backPropagate() would compute current error using next error and weight matrix. Convolutional layer unit test file will be added, too.

beomyeol commented 8 years ago

Closed via #174.