MANIFEST.in
README.md
pyproject.toml
setup.py
mllense/__init__.py
mllense.egg-info/PKG-INFO
mllense.egg-info/SOURCES.txt
mllense.egg-info/dependency_links.txt
mllense.egg-info/requires.txt
mllense.egg-info/top_level.txt
mllense/math/__init__.py
mllense/math/linalg/__init__.py
mllense/math/linalg/config.py
mllense/math/linalg/exceptions.py
mllense/math/linalg/trace.py
mllense/math/linalg/version.py
mllense/math/linalg/_internal/__init__.py
mllense/math/linalg/_internal/constants.py
mllense/math/linalg/_internal/decorators.py
mllense/math/linalg/_internal/typing_extensions.py
mllense/math/linalg/algorithms/__init__.py
mllense/math/linalg/algorithms/base.py
mllense/math/linalg/algorithms/creation/__init__.py
mllense/math/linalg/algorithms/creation/base.py
mllense/math/linalg/algorithms/creation/eye.py
mllense/math/linalg/algorithms/creation/ones.py
mllense/math/linalg/algorithms/creation/rand.py
mllense/math/linalg/algorithms/creation/zeros.py
mllense/math/linalg/algorithms/decomposition/__init__.py
mllense/math/linalg/algorithms/decomposition/base.py
mllense/math/linalg/algorithms/decomposition/det.py
mllense/math/linalg/algorithms/decomposition/eig.py
mllense/math/linalg/algorithms/decomposition/inverse.py
mllense/math/linalg/algorithms/decomposition/qr.py
mllense/math/linalg/algorithms/decomposition/svd.py
mllense/math/linalg/algorithms/decomposition/trace.py
mllense/math/linalg/algorithms/eigen/__init__.py
mllense/math/linalg/algorithms/eigen/base.py
mllense/math/linalg/algorithms/eigen/dominant.py
mllense/math/linalg/algorithms/eigen/power_iteration.py
mllense/math/linalg/algorithms/elementwise/__init__.py
mllense/math/linalg/algorithms/elementwise/add.py
mllense/math/linalg/algorithms/elementwise/base.py
mllense/math/linalg/algorithms/elementwise/divide.py
mllense/math/linalg/algorithms/elementwise/multiply.py
mllense/math/linalg/algorithms/elementwise/scalar.py
mllense/math/linalg/algorithms/elementwise/subtract.py
mllense/math/linalg/algorithms/matmul/__init__.py
mllense/math/linalg/algorithms/matmul/base.py
mllense/math/linalg/algorithms/matmul/block.py
mllense/math/linalg/algorithms/matmul/dot.py
mllense/math/linalg/algorithms/matmul/naive.py
mllense/math/linalg/algorithms/matmul/outer.py
mllense/math/linalg/algorithms/matmul/strassen.py
mllense/math/linalg/algorithms/matmul/transpose.py
mllense/math/linalg/algorithms/norms/__init__.py
mllense/math/linalg/algorithms/norms/base.py
mllense/math/linalg/algorithms/norms/frobenius.py
mllense/math/linalg/algorithms/norms/spectral.py
mllense/math/linalg/algorithms/shape/__init__.py
mllense/math/linalg/algorithms/shape/base.py
mllense/math/linalg/algorithms/shape/concat.py
mllense/math/linalg/algorithms/shape/flatten.py
mllense/math/linalg/algorithms/shape/reshape.py
mllense/math/linalg/algorithms/shape/stack.py
mllense/math/linalg/algorithms/solve/__init__.py
mllense/math/linalg/algorithms/solve/back_substitution.py
mllense/math/linalg/algorithms/solve/base.py
mllense/math/linalg/algorithms/solve/cholesky.py
mllense/math/linalg/algorithms/solve/gaussian.py
mllense/math/linalg/algorithms/solve/lu.py
mllense/math/linalg/api/__init__.py
mllense/math/linalg/api/create.py
mllense/math/linalg/api/decomposition.py
mllense/math/linalg/api/eigen.py
mllense/math/linalg/api/matmul.py
mllense/math/linalg/api/norms.py
mllense/math/linalg/api/ops.py
mllense/math/linalg/api/shape.py
mllense/math/linalg/api/solve.py
mllense/math/linalg/backend/__init__.py
mllense/math/linalg/backend/base.py
mllense/math/linalg/backend/numba_backend.py
mllense/math/linalg/backend/numpy_backend.py
mllense/math/linalg/backend/python_backend.py
mllense/math/linalg/backend/utils.py
mllense/math/linalg/core/__init__.py
mllense/math/linalg/core/complexity.py
mllense/math/linalg/core/execution_context.py
mllense/math/linalg/core/metadata.py
mllense/math/linalg/core/mode.py
mllense/math/linalg/core/trace.py
mllense/math/linalg/core/types.py
mllense/math/linalg/core/validation.py
mllense/math/linalg/diagnostics/__init__.py
mllense/math/linalg/diagnostics/condition_number.py
mllense/math/linalg/diagnostics/error_analysis.py
mllense/math/linalg/diagnostics/rank.py
mllense/math/linalg/diagnostics/report.py
mllense/math/linalg/diagnostics/stability.py
mllense/math/linalg/internal/__init__.py
mllense/math/linalg/internal/constants.py
mllense/math/linalg/internal/decorators.py
mllense/math/linalg/internal/typing_extensions.py
mllense/math/linalg/nn/__init__.py
mllense/math/linalg/nn/activations.py
mllense/math/linalg/nn/gradients.py
mllense/math/linalg/nn/layers.py
mllense/math/linalg/nn/losses.py
mllense/math/linalg/registry/__init__.py
mllense/math/linalg/registry/algorithm_registry.py
mllense/math/linalg/registry/auto_register.py
mllense/math/linalg/registry/backend_registry.py
mllense/math/linalg/tests/__init__.py
mllense/math/linalg/tests/algorithms/__init__.py
mllense/math/linalg/tests/algorithms/test_block_matmul.py
mllense/math/linalg/tests/algorithms/test_elementwise.py
mllense/math/linalg/tests/algorithms/test_gaussian.py
mllense/math/linalg/tests/algorithms/test_naive_matmul.py
mllense/math/linalg/tests/algorithms/test_power_iteration.py
mllense/math/linalg/tests/api/__init__.py
mllense/math/linalg/tests/api/test_create.py
mllense/math/linalg/tests/api/test_decomposition.py
mllense/math/linalg/tests/api/test_eigen.py
mllense/math/linalg/tests/api/test_explainability.py
mllense/math/linalg/tests/api/test_matmul.py
mllense/math/linalg/tests/api/test_norms.py
mllense/math/linalg/tests/api/test_ops.py
mllense/math/linalg/tests/api/test_shape.py
mllense/math/linalg/tests/api/test_solve.py
mllense/math/linalg/tests/api/test_trace_truncation.py
mllense/math/linalg/tests/backend/__init__.py
mllense/math/linalg/tests/backend/test_backend_switching.py
mllense/math/linalg/tests/backend/test_numpy_backend.py
mllense/math/linalg/tests/backend/test_python_backend.py
mllense/math/linalg/tests/core/__init__.py
mllense/math/linalg/tests/core/test_execution_context.py
mllense/math/linalg/tests/core/test_trace.py
mllense/math/linalg/tests/core/test_validation.py
mllense/math/linalg/tests/diagnostics/__init__.py
mllense/math/linalg/tests/diagnostics/test_condition_number.py
mllense/math/linalg/tests/diagnostics/test_rank.py
mllense/math/linalg/tests/diagnostics/test_stability.py
mllense/math/linalg/tests/nn/__init__.py
mllense/math/linalg/tests/nn/test_activations.py
mllense/math/linalg/tests/nn/test_gradients.py
mllense/math/linalg/tests/nn/test_losses.py
mllense/math/linalg/tutorial/01_creation.py
mllense/math/linalg/tutorial/02_operations.py
mllense/math/linalg/tutorial/03_matmul.py
mllense/math/linalg/tutorial/04_shape.py
mllense/math/linalg/tutorial/05_solve.py
mllense/math/linalg/tutorial/06_decomposition.py
mllense/math/linalg/tutorial/07_norms_and_eigen.py
mllense/math/linalg/tutorial/08_diagnostics.py
mllense/math/linalg/tutorial/09_neural_networks.py
mllense/math/linalg/tutorial/10_execution_and_tracing.py
mllense/math/linalg/tutorial/__init__.py
mllense/math/linalg/utils/__init__.py
mllense/math/linalg/utils/block_ops.py
mllense/math/linalg/utils/inspection.py
mllense/math/linalg/utils/logging.py
mllense/math/linalg/utils/matrix_helpers.py
mllense/math/linalg/utils/performance.py
mllense/models/__init__.py
mllense/models/base.py
mllense/models/cluster/__init__.py
mllense/models/cluster/k_means.py
mllense/models/core/__init__.py
mllense/models/core/execution_context.py
mllense/models/core/metadata.py
mllense/models/core/trace.py
mllense/models/ensemble/__init__.py
mllense/models/ensemble/forest.py
mllense/models/linear_model/__init__.py
mllense/models/linear_model/linear.py
mllense/models/linear_model/logistic.py
mllense/models/tree/__init__.py
mllense/models/tree/tree.py