On various literature I keep seeing reference of
error function
but I'm not quite sure what it means. I am using sigmoid function for activation. Does the error function mean the following equation:
differential = actualOutput(1-actualOutput)
error = (expectedOutput-actualOutput)(differential)
or is the following:
error = expectedOutput-actualOutput
?