Trying to get the chat to work
This commit is contained in:
parent
67ee7bead7
commit
f871971de1
1 changed files with 3 additions and 0 deletions
|
@ -22,6 +22,9 @@ def get_max_prompt_length(tokens):
|
|||
return max_length
|
||||
|
||||
def encode(prompt, tokens_to_generate=0, add_special_tokens=True):
|
||||
if shared.is_RWKV:
|
||||
return prompt
|
||||
|
||||
input_ids = shared.tokenizer.encode(str(prompt), return_tensors='pt', truncation=True, max_length=get_max_prompt_length(tokens_to_generate), add_special_tokens=add_special_tokens)
|
||||
if shared.args.cpu:
|
||||
return input_ids
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue