Enter code here`as crappy a programmer i am, with slight dyslexia, i need every thing code based witten in such a stupid way that even child can understand it. I try to understand how to get input layer into output layer using feed forward but the tutorials online require to much education. My understanding of math is limited. I'm trying to make a simple neural net with one input layer and one output layer. I understand explanations in sentences better than code.
for i = 1 to 2
input1(i) = input1(i) * weight1(i)
input1(i) = input2(i) * weight2(i)
next i
for i = 1 to 2
sum(i) = input1 + input2
next i
for i = 1 to 2
if sum(i) > 0 then fire.
next i
end