Skip to content

Type Alias: LayerCategory

ts
type LayerCategory = 
  | "input"
  | "conv"
  | "linear"
  | "norm"
  | "activation"
  | "pool"
  | "dropout"
  | "attention"
  | "embedding"
  | "recurrent"
  | "reshape"
  | "merge"
  | "output"
  | "other";

Defined in: ml/model.ts:48

Coarse layer families, used to color a diagram consistently.

MIT licensed. WebGL2 required.