TorchLean API

NN.Examples.DeepDives.GraphSpec.Tutorial

GraphSpec tutorial #

GraphSpec is TorchLean's architecture-facing graph language. It is useful when you want a model to exist first as a typed graph that can later be interpreted in several ways:

That is why this folder is not a duplicate of NN.Spec.Models or NN.Examples.Models.

This tutorial does two things:

  1. It runs the smallest complete lowering path: GraphSpec.Models.mlp → ToTorchLean.toSeq → Trainer.new → trainer.train.
  2. It typechecks the broader GraphSpec model ladder: MLP, CNN, and a residual linear block.

Only the MLP is trained here because it is the compact check path for Seq lowering. The CNN and residual block remain architecture terms that graph passes, exporters, and proofs can consume.

Run:

lake exe torchlean graphspec --backend eager
lake exe torchlean graphspec --backend compiled

You can also pass the standard TorchLean runtime flags such as --dtype ieee32, --backend eager, or --backend compiled.

Command-line help for the GraphSpec tutorial.

Instances For

    Small architecture terms that should typecheck #

    A small CNN graph, included here so the tutorial is visibly not “just MLP”.

    This is still a sequential graph: convolution, ReLU, pooling, convolution, ReLU, pooling, flatten, linear head. The ugly-looking type is the point: the parameter shapes and intermediate spatial arithmetic are checked before the model can be used.

    Instances For

      The minimal DAG-native skip-connection example:

      $$ x\mapsto\operatorname{ReLU}(Wx+b+x). $$

      This is not a plain chain: representing it that way would either duplicate the input path or hide sharing in a special layer. That is the pedagogical reason GraphSpec.DAG exists.

      Instances For

        Print the architecture ladder this tutorial is checking.

        Instances For

          Run the compact MLP lowering/training path.

          Instances For