LICENSE
README.md
pyproject.toml
src/DepthML/__init__.py
src/DepthML/typing.py
src/DepthML.egg-info/PKG-INFO
src/DepthML.egg-info/SOURCES.txt
src/DepthML.egg-info/dependency_links.txt
src/DepthML.egg-info/requires.txt
src/DepthML.egg-info/top_level.txt
src/DepthML/components/__init__.py
src/DepthML/components/base_component.py
src/DepthML/components/activation/__init__.py
src/DepthML/components/activation/base_activation.py
src/DepthML/components/activation/identity.py
src/DepthML/components/activation/leaky_relu.py
src/DepthML/components/activation/relu.py
src/DepthML/components/layer/__init__.py
src/DepthML/components/layer/affine.py
src/DepthML/components/layer/base_layer.py
src/DepthML/components/loss/__init__.py
src/DepthML/components/loss/base_loss.py
src/DepthML/components/loss/mean_squared_error.py
src/DepthML/initializers/__init__.py
src/DepthML/initializers/base_initializer.py
src/DepthML/initializers/he.py
src/DepthML/initializers/uniform.py
src/DepthML/initializers/xavier.py
src/DepthML/models/__init__.py
src/DepthML/models/base_model.py
src/DepthML/models/stack.py