[D] Advice on sequential recommendations architectures
I’ve tried to use a Transformer decoder architecture to model a sequence of user actions. Unlike an item_id paradigm where each interaction is described by the id of the item the user interacted with, I need to express the interaction through a series of attributes. For example “user clicked on a red button on the top left of the screen showing the word Hello”, which today I’m tokenizing as something like [BOS][action:click][what:red_button][location:top_left][text:hello]. I concatenate a series of interactions […]