[comp.ai.neural-nets] normalizing

muttiah@stable.ecn.purdue.edu (Ranjan S Muttiah) (04/26/91)

Say you have a set X that has the following values:

	X = {5, 6, 7, 8, 10}.

X is known to have a maximum value of 20.

So, for input to a typical network, do I normalize such as:

	X_new = {5/10, 6/10 ... }

or as:

	X_new = {5/20, 6/20, .... }