mirror of
https://github.com/ml-explore/mlx-examples.git
synced 2025-06-24 17:31:18 +08:00
Stop generating at eos token
This commit is contained in:
parent
67a208b13e
commit
4549dcbbd0
@ -202,7 +202,11 @@ if __name__ == "__main__":
|
||||
|
||||
tokens = []
|
||||
for token, _ in zip(generate(prompt, model), range(args.max_tokens)):
|
||||
tokens.append(token)
|
||||
|
||||
if token == tokenizer.eos_token_id:
|
||||
break
|
||||
else:
|
||||
tokens.append(token)
|
||||
|
||||
if (len(tokens) % 10) == 0:
|
||||
mx.eval(tokens)
|
||||
|
Loading…
Reference in New Issue
Block a user