N Neurarch Architectures Checks Docs Open the app

Architectures / Recommendation

๐Ÿงพ Behavior Sequence Transformer

Alibaba 2019 BST โ€” user behavior sequence + target โ†’ Transformer encoder + concat with user features โ†’ MLP โ†’ CTR

Layers
20
Parameters
128.76M
Input
50
Output
1
Verifier
Clean

Every number on this page is computed from the graph by the same functions the app runs, not written by hand.

Open Behavior Sequence Transformer on the canvas Free, no account needed

When to pick it

Pick for sequential CTR when user behavior history matters (session intent). Production-deployed at Alibaba scale; needs sequence-aware features.

Structure

20 layers. Output shapes are propagated from the input shape, batch dimension excluded.

LayerTypeParametersOutput shape
1Behavior Seq (T items)Inputshape=[50]50
2Item EmbedEmbeddingvocabSize=100000050 ร— 64
3Pos EncodingPositional EncodingmaxLen=5050 ร— 64
4Target ItemInputshape=[1]1
5Target EmbedEmbeddingvocabSize=10000001 ร— 64
6[seq; tgt]Concatenate51 ร— 64
7Transformer EncoderTransformer BlocknumHeads=8, numLayers=151 ร— 64
8to_channelsPermute64 ร— 51
9Mean PoolGlobalAvgPool1D64
10User ProfileInputshape=[16]16
11User TowerLinearoutFeatures=32, inFeatures=1632
12Concat allConcatenate96
13MLP 1024LinearoutFeatures=1024, inFeatures=961024
14PReLUPReLU1024
15MLP 512LinearoutFeatures=512, inFeatures=1024512
16PReLUPReLU512
17MLP 256LinearoutFeatures=256, inFeatures=512256
18CTR HeadLinearoutFeatures=1, inFeatures=2561
19SigmoidSigmoid1
20P(click)Output1

What the verifier says

The same 41 structural checks that run on every edit in the app, on this graph.

info"Sigmoid" feeds directly into Output. PyTorch's nn.CrossEntropyLoss already applies log-softmax internally, an explicit Softmax causes double-application and degrades training stability. Fix: Remove Softmax/Sigmoid for training. Restore it in a separate inference wrapper or ONNX export. (Sigmoid)
output-activation
infoSigmoid saturates to [0,1] / [-1,1], and its gradient approaches zero for large inputs. In networks deeper than 5 layers, this halts learning in early layers. Fix: Use ReLU, GELU, or SiLU for hidden layers. Keep Sigmoid only at binary classification outputs; Tanh in specific contexts (GAN generators, LSTM gates). (Sigmoid)
vanishing-gradient
info16 layers with no BatchNorm, LayerNorm, or GroupNorm. Without normalization, activations can explode or vanish across layers, causing slow or unstable training. Fix: Add BatchNorm after Conv2d (CV tasks), LayerNorm after attention/FFN (NLP/LLM), or GroupNorm for small batch sizes.
deep-no-norm
info"MLP 256" feeds directly into "CTR Head" with no activation between them. Two stacked linear maps collapse into one (Wโ‚‚ยทWโ‚), so the extra layer costs parameters but adds no representational power. Fix: Add a non-linearity (ReLU/GELU) between them. If this is a deliberate low-rank / factorized projection (down-proj โ†’ up-proj), this hint is safe to ignore. (MLP 256)
consecutive-linear-no-activation
infoPyTorch initializes Linear/Conv with Kaiming (He) init, which is derived for ReLU-family activations. Feeding a saturating activation (sigmoid/tanh) from a He-initialized layer starts training in the saturated tails, shrinking early gradients. Fix: Initialize these layers with Xavier instead: nn.init.xavier_uniform_(w, gain=nn.init.calculate_gain("sigmoid"|"tanh")), or switch the activation to a ReLU-family one. (CTR Head)
init-activation-mismatch

The PyTorch it exports

Generated from the graph above. First 46 lines; the app exports the whole file, plus the training loop, the data contract and a deploy bundle.

# Architecture designed with Neurarch: https://neurarch.com
# PyTorch: compatible with Python 3.8+ and torch>=1.12
# Colab: pip install torch torchvision  (usually pre-installed)
#
# WARNING: 2 layer(s) below are not yet supported by the PyTorch
# exporter and pass their input through UNCHANGED in forward():
#   - to_channels (permute)
#   - Mean Pool (globalAvgPool1d)

import torch
import torch.nn as nn
import torch.nn.functional as F
from typing import Tuple

class BehaviorSequenceTransformer(nn.Module):
    def __init__(self):
        super().__init__()

        self.embedding_1 = nn.Embedding(1000000, 64)
        self.embedding_2 = nn.Embedding(1000000, 64)
        self.transformerBlock_1 = nn.TransformerEncoderLayer(d_model=512, nhead=8, dim_feedforward=2048, batch_first=True)
        self.linear_1 = nn.Linear(16, 32)
        self.linear_2 = nn.Linear(96, 1024)
        self.prelu_1 = nn.PReLU(num_parameters=1)
        self.linear_3 = nn.Linear(1024, 512)
        self.prelu_2 = nn.PReLU(num_parameters=1)
        self.linear_4 = nn.Linear(512, 256)
        self.linear_5 = nn.Linear(256, 1)

    def forward(self, src, tgt=None):
        # Behavior Seq (T items) shape: [50]
        # Target Item shape: [1]
        # User Profile shape: [16]
        embedding_eq_emb = self.embedding_1(src)
        # positionalEncoding: add positional encoding externally (e.g. sinusoidal or learned PE)
        embedding_gt_emb = self.embedding_2(tgt)
        concatenate_at_seq = torch.cat([embedding_eq_emb, embedding_gt_emb], dim=0)
        transformer_block_trf = self.transformerBlock_1(concatenate_at_seq)
        # TODO: layer 'to_channels' (permute) is not yet supported by the exporter; passing through unchanged
        # TODO: layer 'Mean Pool' (globalAvgPool1d) is not yet supported by the exporter; passing through unchanged
        linear_ser_fc = self.linear_1(x)
        concatenate__final = torch.cat([transformer_block_trf, linear_ser_fc], dim=-1)
        linear_mlp1 = self.linear_2(concatenate__final)
        prelu_act1 = self.prelu_1(linear_mlp1)
        linear_mlp2 = self.linear_3(prelu_act1)
        prelu_act2 = self.prelu_2(linear_mlp2)

For agents

This architecture is machine-readable end to end. An agent can list the set, fetch this graph, edit it, and have the edit verified before any GPU time is spent.

Also in Recommendation

๐Ÿ—ผ Two-Tower
User+Item dual encoder for retrieval โ€” embeddings โ†’ MLP per side โ†’ dot product score
12 layers ยท 70.43M
๐Ÿ“ Wide & Deep
Memorization
13 layers ยท 3.65M
๐Ÿ›’ DLRM
Meta's Deep Learning Recommendation Model โ€” bottom MLP for dense, embedding for sparse, feature interaction, top MLP
14 layers ยท 32.35M
๐Ÿค Neural Collaborative Filtering
He et al
16 layers ยท 105.61M