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 the my yml, I have chat_template: chatml, which I would have thought would mean that my chats are always specified as <|im_start|>user\n{content}<|im_end|> and similarly for the bot with assistant instead of user. However, instead I'm seeing that my messages are being prepended by <s>, being used as completions, and then having </s> close them.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I trained a model and now am trying to test it out in inference model with this command:
CUDA_VISIBLE_DEVICES=0 python -m axolotl.cli.inference /path/to/yml --base_model=/path/to/checkpoint/folder
In the my yml, I have
chat_template: chatml
, which I would have thought would mean that my chats are always specified as<|im_start|>user\n{content}<|im_end|>
and similarly for the bot withassistant
instead ofuser
. However, instead I'm seeing that my messages are being prepended by<s>
, being used as completions, and then having</s>
close them.Did I miss some param setting?
Beta Was this translation helpful? Give feedback.
All reactions