nlpxucan / WizardLM

LLMs build upon Evol Insturct: WizardLM, WizardCoder, WizardMath
9.11k stars 711 forks source link

Wizard Math 7B cann't stop generate #192

Open Fazziekey opened 11 months ago

Fazziekey commented 11 months ago

image

when I use Wizard Math 7B generate, it can't stop, and out out </s> which is same to eos token, and I print the output tensor in torch , I find the </s> is be split to three token, </,s,>, which is not eos token, but when I use the Wizard 13B, it works , I think there may be err in Wizard Math 7B SFT

flyinghpluo commented 11 months ago

Thank you for your interest in our work. Maybe you should to manually set the stop_tokens = ['\\'] like our WizardMath demo

Fazziekey commented 11 months ago

Thank you for your interest in our work. Maybe you should to manually set the stop_tokens = [''] like our WizardMath demo

Thanks