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
In run_pplm_discrim_train.py get_generic_dataset() line 291: if add_eos_token:
seq = [50256] + seq
I assume it addes an eos token to the sequence. However, it seems to be added at the beginning by these lines. Shouldn't eos be added to the end of the sequence?
The text was updated successfully, but these errors were encountered:
In run_pplm_discrim_train.py get_generic_dataset() line 291:
if
add_eos_token:seq = [50256] + seq
I assume it addes an eos token to the sequence. However, it seems to be added at the beginning by these lines. Shouldn't eos be added to the end of the sequence?
The text was updated successfully, but these errors were encountered: