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
{{ message }}
This repository was archived by the owner on Feb 7, 2025. It is now read-only.
I've noticed a bug in the way we're training transformers - currently, we are training them to predict token N, given tokens 0-N inclusive!
To fix this we need to shift the targets by one, so
becomes
Alternatively we could change the return value of the inferer so it provides the shifted versions - any opinions @Warvito ?