- Joined
- Sep 20, 2022
- Messages
- 313
- Reaction score
- 41
Personally I think neural networks are the second dumbest way to write a program, but on the other hand, I do like the simplicity of a perceptron.
Rather than pollute my mind with the statistical gooble-de-gook of training, I thought I would make a few networks manually, just for fun.
I was planning a NAND function, but that was too ambitious, so I'm working on NOT.
x goes in, NOT(x) comes out.
Using a "rectified linear unit" output function, I got it working with 2 inputs, 1 in the middle, and 1 output.
A version that uses the "sigmoid" output function is taking me a bit longer.
Rather than pollute my mind with the statistical gooble-de-gook of training, I thought I would make a few networks manually, just for fun.
I was planning a NAND function, but that was too ambitious, so I'm working on NOT.
x goes in, NOT(x) comes out.
Using a "rectified linear unit" output function, I got it working with 2 inputs, 1 in the middle, and 1 output.
A version that uses the "sigmoid" output function is taking me a bit longer.