Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A logic schema below:



Where:

  • x1, x2 … xn are the input values
  • w1, w2 … wn  are the weights on each inputs
  • sum = x1 * w1 + x2 * w2 + … + xn * wn 
  • if sum > threshold output is 1 (or true) else it is 0 or (false)

...