A
A
Artem Matyashov2017-04-30 17:28:53
Neural networks
Artem Matyashov, 2017-04-30 17:28:53

What does the convolution operation do for two vectors?

In the literature on neutron networks I read:

During operation, each neuron of the recognition layer computes the convolution of the eigenweight vector and the input vector C. The neuron with weights closest to the vector C will have the largest output, thereby winning the competition and simultaneously slowing down all other neurons in the layer.

What does this operation do? How can it be programmed?
vector of own weights - vector of real numbers
vector C - vector containing only zeros or ones

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Andrew, 2017-05-01
@OLS

sum = 0
for i = 1 to K
  sum += C[i]*N[i]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question