You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the current formula for the named function bpe_get_score_for_pair is case insensitive and may pick the wrong merge during the tokenization process. This happens because the FILTER() formula in Excel is case insensitive. The implementation should be changed to use EXACT() with FILTER() to enforce case sensitivity.
That being said, I'm reconsidering the use of FILTER() because (a) it is not available in older versions of Excel and (b) it can be less performant and slow the sheet down (filter has to search the entire range for ALL matches and in most cases that it's used in the sheet we only need a single match). It does however make the formulas more readable.