LICENSE
README.md
pyproject.toml
src/tinymlp/__init__.py
src/tinymlp.egg-info/PKG-INFO
src/tinymlp.egg-info/SOURCES.txt
src/tinymlp.egg-info/dependency_links.txt
src/tinymlp.egg-info/requires.txt
src/tinymlp.egg-info/top_level.txt
src/tinymlp/activations/__init__.py
src/tinymlp/activations/relu.py
src/tinymlp/activations/sigmoid.py
src/tinymlp/activations/tanh.py
src/tinymlp/core/__init__.py
src/tinymlp/core/engine.py
src/tinymlp/core/value.py
src/tinymlp/losses/__init__.py
src/tinymlp/losses/cross_entropy.py
src/tinymlp/losses/mse.py
src/tinymlp/nn/__init__.py
src/tinymlp/nn/layer.py
src/tinymlp/nn/mlp.py
src/tinymlp/nn/neuron.py
src/tinymlp/optim/__init__.py
src/tinymlp/optim/sgd.py
tests/test_activations.py
tests/test_layer.py
tests/test_losses.py
tests/test_mlp.py
tests/test_neuron.py
tests/test_optimizer.py
tests/test_value.py