--- title: NARM keywords: fastai sidebar: home_sidebar summary: "Neural Attentive Session-based Recommendation." description: "Neural Attentive Session-based Recommendation." nb_path: "nbs/models/models.narm.ipynb" ---
class Args:
bert_hidden_units = 4
bert_num_heads = 2
bert_head_size = 4
bert_dropout = 0.2
bert_attn_dropout = 0.2
bert_num_blocks = 4
num_items = 10
bert_hidden_units = 4
bert_max_len = 8
bert_dropout = 0.2
args = Args()
model = NARM(args)
model.parameters