ID Generation Probability: The probability of generating a textual ID d=[d1,…,dn] from an item's metadata w is the product of conditional probabilities for each token:
p(d1,⋯,dn)=i=1∏npθ(di∣d<i,w)
- di: The i-th token of the generated ID.
- d<i: The previously generated tokens of the ID.
- w: The input sequence of tokens from the item's metadata.
- θ: The parameters of the
ID Generator
model.