Views
No views yet
1git clone https://github.com/ewdlop/Not-trained-Neural-Networks-Notes.git
2cd Not-trained-Neural-Networks-Notes
3
4# Install dependencies
5pip install numpy matplotlib
6
7# Quick demo
8python demo.py
9
10# Run main implementation
11python algebraic_neural_network.py
12
13# Run comprehensive tests
14python test_comprehensive.pypython demo.py1# Polynomial-based networks
2python examples/polynomial_network.py
3
4# Group theory networks
5python examples/group_theory_network.py
6
7# Geometric algebra networks
8python examples/geometric_algebra_network.py
9
10# Uncomputable neural networks
11python examples/uncomputable_networks.py├── README.md # This file
├── demo.py # Quick demonstration script
├── algebraic_neural_network.py # Main implementation
├── test_comprehensive.py # Test suite
├── theory/ # Theoretical background
│ ├── algebraic_foundations.md # Mathematical foundations
│ ├── uncomputable_networks.md # Uncomputable neural networks theory
│ └── examples.md # Worked examples
└── examples/ # Practical examples
├── polynomial_network.py # Polynomial-based network
├── group_theory_network.py # Group theory implementation
├── geometric_algebra_network.py # Geometric algebra network
└── uncomputable_networks.py # Uncomputable neural networkspython test_comprehensive.py