In this example, we will take a closer look at TensorFlow's and TensorBoard's main concepts and try to do some basic operations to get you started. The model we want to implement simulates a single neuron. For reference, see the following diagram:
The output will be the input product for the weight.
The preceding schema consists of the following:
- An input value, which stimulates the neuron.
- A single weight, which is multiplied by the input, provides the output of the neuron. The weight value will vary in the course of the training procedure.
- The output is given ...