float w_, b_;
Neuron()
: w_(2.0), b_(1.0)
{}
I dont quite understand what this means or how it works. I do get what its doing in a very vague way (seems to set variables w and b) but why and when should I use this? also why are the brackets under the data and what exactly does the : (colon) mean?
for some clarification here is the video I saw it in:
How to Build a single Neuron in C++
I'm trying to learn how to build a neural network so if any of you know any good in depth documentation on how it works please link it below as well.