TorchLean API

NN.Examples.Advanced.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 and explains the broader GraphSpec model ladder: MLP, CNN, residual linear block, and ResNet18.

Only the MLP is trained here because it is the compact check path for Seq lowering. The larger models are still GraphSpec models; they are deliberately kept as architecture terms so graph passes, exporters, and proofs can consume them without making this tutorial a slow vision benchmark.

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 #

    The smallest sequential GraphSpec model.

    Parameter ABI: [Mat 3 2, Vec 3, Mat 1 3, Vec 1].

    Instances For

      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 ↦ relu((W x + 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
          def NN.Examples.Advanced.GraphSpec.Tutorial.tutorialResNet18 (inC h w numClasses : ) (h_inC : inC > 0) (_h_h : h > 0) (_h_w : w > 0) (_h_cls : numClasses > 0) :

          The larger residual-family architecture available from the same model catalog.

          We bind it here as a compile-time shape check: users can inspect its type in the editor, while the runtime tutorial below stays small enough to run instantly.

          Instances For

            Print the architecture ladder this tutorial is checking.

            Instances For

              Tiny one-sample dataset for the lowered GraphSpec MLP training path.

              Instances For

                Run the compact MLP lowering/training path.

                Instances For