Revert "Make long_replies ban the eos token as well"

This reverts commit 6c521ce967.
This commit is contained in:
oobabooga 2023-08-02 21:45:10 -07:00
parent 6bf9e855f8
commit e074538b58

View file

@ -28,7 +28,7 @@ class MyLogits(LogitsProcessor):
def __call__(self, input_ids, scores):
if input_ids.shape[-1] - initial_size < params["min_length"]:
scores[...,self.newline_id] = -1000
scores[...,shared.tokenizer.eos_token_id] = -1000
# scores[...,shared.tokenizer.eos_token_id] = -1000
# probs = torch.softmax(scores, dim=-1, dtype=torch.float)
# probs[0] /= probs[0].sum()