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.