attractivechaos / kann

A lightweight C library for artificial neural networks
Other
678 stars 117 forks source link

kann_layer_linear #4

Open razumovs opened 7 years ago

razumovs commented 7 years ago

I have not been able to find kann_layer_linear definition in the source code.

It is from the example (A complete example) given on the page.

t = kad_relu(kann_layer_linear(t, 64));

It's not that I need it right now, but, it is the first thing I tried running.

attractivechaos commented 7 years ago

Thank you. It was renamed to kann_layer_dense() at some point. I have updated README.

razumovs commented 7 years ago

Thanks for the fast answer. In this case what about this function? https://github.com/attractivechaos/kann/blob/master/doc/01user.md#constructing-a-convolutional-neural-network-cnn

kann_layer_max2d(t, 2, 2, 2, 0)

It looks like I will slowly go through a few of your examples trying to see if they will work out for me :)
I have a few guesses sometimes which function I should be using instead, but, figured, might as well share and ask to be sure.