TorchLean API

NN.Entrypoint.Runtime

Runtime Entrypoint #

This is the broad import for TorchLean's executable layer. It collects the runtime pieces that are useful when building, training, importing, exporting, or checking runnable models:

For ordinary user code, prefer import NN. Import this file when you need the full executable subsystem. If you only need pure tensor semantics and theorems, prefer NN.Entrypoint.Spec or NN.Entrypoint.Proofs; those imports keep runtime bridge dependencies out of the build.

The runtime entrypoint imports reusable bridge infrastructure under NN.Runtime.PyTorch.*. Example-only MLP/CNN/Transformer round-trip code lives under NN.Examples.Interop.PyTorch.*, so ordinary runtime imports do not pull example modules into the library surface.

References / context: