Hi, minor typo in Algorithm 5 (Lines 12-15) of the paper:
- Line 12 defines $n_{un}$ as the target number of unmasked tokens.
- But Line 14 remasks exactly $n_{un}$ tokens (
if c^i \in Lowest - n_un then r_0^i = M).
This leaves $L - n_{un}$ unmasked tokens, inverting the intended ratio.
Should Line 14 be Lowest - (L - n_un) instead?
Hi, minor typo in Algorithm 5 (Lines 12-15) of the paper:
if c^i \in Lowest - n_un then r_0^i = M).This leaves$L - n_{un}$ unmasked tokens, inverting the intended ratio.
Should Line 14 be
Lowest - (L - n_un)instead?