forward method
Implementation
ValueVector forward(ValueVector x) {
final out = inputLayer.forward(x);
final activated = out.reLU();
activatedValues = activated;
// print("input Layer neurons length: ${out.values.length}");
final out2 = hiddenLayer.forward(activated);
final activatedSoftmax = out2.softmax();
softMax = activatedSoftmax;
// print("Output: $out2");
return activatedSoftmax;
}