Sample implementations of neural networks that solve the XOR problem from scratch (math libraries only)
g++ cpp_xor.cpp -o cpp_xor
./cpp_xor
pip install numpy
python python_xor.py
g++ c_xor.c -o ./c_xor
./c_xor
cd rust_xor
cargo run --bin rust_xor
or for the Tahn function implementation:
cargo run --bin tahn
- Add rust version
- Add javascript/typescript versions
- Add C version