exllama
exllama copied to clipboard
piece id is out of range
can someone help me with this error please
Traceback (most recent call last):
File "C:\Users\cheth\Music\new chaya\OneReality\OneRealityMemory.py", line 68, in
This is usually caused by conflicting vocabularies in merged models. Would help to know what model this is.
dolphin-2.1-mistral-7B-GPTQ
The model seems to be using the same tokenizer as Mistral, which doesn't define the two ChatML tokens that Dolphin needs. You can try adding an added_tokens.json file to the model directory with this content:
{
"<|im_end|>": 32000,
"<|im_start|>": 32001
}