After I initialize the values for my NN, I want to be able to train it with a given output and a desired 'target' output. And, I can get this to work if I make my 'target' values are smallish, like less than 10. For example:
input_values = [9 8 7 6 5 4 3 2 1 0];
target_values = [0 1 2 3 4 5 6 7...