2023-02-23 11:28:30 -05:00
|
|
|
import re
|
2023-02-23 10:05:25 -05:00
|
|
|
import time
|
2023-03-20 12:36:52 -04:00
|
|
|
import traceback
|
2023-02-23 10:05:25 -05:00
|
|
|
|
2023-02-23 11:28:30 -05:00
|
|
|
import numpy as np
|
2023-02-23 10:05:25 -05:00
|
|
|
import torch
|
|
|
|
import transformers
|
2023-02-23 12:41:42 -05:00
|
|
|
|
|
|
|
import modules.shared as shared
|
2023-03-08 00:46:35 -05:00
|
|
|
from modules.callbacks import (Iteratorize, Stream,
|
|
|
|
_SentinelTokenStoppingCriteria)
|
2023-02-23 10:05:25 -05:00
|
|
|
from modules.extensions import apply_extensions
|
2023-02-23 12:41:42 -05:00
|
|
|
from modules.html_generator import generate_4chan_html, generate_basic_html
|
2023-04-07 20:36:04 -04:00
|
|
|
from modules.models import clear_torch_cache, local_rank
|
2023-02-23 12:41:42 -05:00
|
|
|
|
2023-02-23 10:05:25 -05:00
|
|
|
|
|
|
|
def get_max_prompt_length(tokens):
|
2023-04-06 23:15:45 -04:00
|
|
|
max_length = 2048 - tokens
|
2023-02-23 10:05:25 -05:00
|
|
|
if shared.soft_prompt:
|
|
|
|
max_length -= shared.soft_prompt_tensor.shape[1]
|
|
|
|
return max_length
|
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-02-23 10:05:25 -05:00
|
|
|
def encode(prompt, tokens_to_generate=0, add_special_tokens=True):
|
2023-03-31 13:27:01 -04:00
|
|
|
if any((shared.is_RWKV, shared.is_llamacpp)):
|
2023-03-06 06:45:49 -05:00
|
|
|
input_ids = shared.tokenizer.encode(str(prompt))
|
|
|
|
input_ids = np.array(input_ids).reshape(1, len(input_ids))
|
2023-02-23 10:05:25 -05:00
|
|
|
return input_ids
|
|
|
|
else:
|
2023-03-06 06:45:49 -05:00
|
|
|
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)
|
2023-04-06 15:04:03 -04:00
|
|
|
|
|
|
|
if type(shared.tokenizer) is transformers.LlamaTokenizer and input_ids[0][0] == 29871:
|
2023-04-06 23:15:45 -04:00
|
|
|
input_ids = input_ids[:, 1:]
|
2023-04-06 15:04:03 -04:00
|
|
|
|
2023-03-06 06:45:49 -05:00
|
|
|
if shared.args.cpu:
|
|
|
|
return input_ids
|
|
|
|
elif shared.args.flexgen:
|
|
|
|
return input_ids.numpy()
|
|
|
|
elif shared.args.deepspeed:
|
|
|
|
return input_ids.to(device=local_rank)
|
2023-03-17 19:56:23 -04:00
|
|
|
elif torch.has_mps:
|
|
|
|
device = torch.device('mps')
|
|
|
|
return input_ids.to(device)
|
2023-03-06 06:45:49 -05:00
|
|
|
else:
|
|
|
|
return input_ids.cuda()
|
2023-02-23 10:05:25 -05:00
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-02-23 10:05:25 -05:00
|
|
|
def decode(output_ids):
|
2023-03-12 22:58:25 -04:00
|
|
|
# Open Assistant relies on special tokens like <|endoftext|>
|
2023-03-29 20:47:36 -04:00
|
|
|
if re.match('.*(oasst|galactica)-*', shared.model_name.lower()):
|
2023-03-12 22:58:25 -04:00
|
|
|
return shared.tokenizer.decode(output_ids, skip_special_tokens=False)
|
|
|
|
else:
|
|
|
|
reply = shared.tokenizer.decode(output_ids, skip_special_tokens=True)
|
|
|
|
reply = reply.replace(r'<|endoftext|>', '')
|
|
|
|
return reply
|
2023-02-23 10:05:25 -05:00
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-02-23 10:05:25 -05:00
|
|
|
def generate_softprompt_input_tensors(input_ids):
|
|
|
|
inputs_embeds = shared.model.transformer.wte(input_ids)
|
|
|
|
inputs_embeds = torch.cat((shared.soft_prompt_tensor, inputs_embeds), dim=1)
|
|
|
|
filler_input_ids = torch.zeros((1, inputs_embeds.shape[1]), dtype=input_ids.dtype).to(shared.model.device)
|
2023-04-06 23:15:45 -04:00
|
|
|
# filler_input_ids += shared.model.config.bos_token_id # setting dummy input_ids to bos tokens
|
2023-02-23 10:05:25 -05:00
|
|
|
return inputs_embeds, filler_input_ids
|
|
|
|
|
|
|
|
# Removes empty replies from gpt4chan outputs
|
|
|
|
def fix_gpt4chan(s):
|
|
|
|
for i in range(10):
|
|
|
|
s = re.sub("--- [0-9]*\n>>[0-9]*\n---", "---", s)
|
|
|
|
s = re.sub("--- [0-9]*\n *\n---", "---", s)
|
|
|
|
s = re.sub("--- [0-9]*\n\n\n---", "---", s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
# Fix the LaTeX equations in galactica
|
|
|
|
def fix_galactica(s):
|
|
|
|
s = s.replace(r'\[', r'$')
|
|
|
|
s = s.replace(r'\]', r'$')
|
|
|
|
s = s.replace(r'\(', r'$')
|
|
|
|
s = s.replace(r'\)', r'$')
|
|
|
|
s = s.replace(r'$$', r'$')
|
|
|
|
s = re.sub(r'\n', r'\n\n', s)
|
|
|
|
s = re.sub(r"\n{3,}", "\n\n", s)
|
|
|
|
return s
|
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-02-23 10:05:25 -05:00
|
|
|
def formatted_outputs(reply, model_name):
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-03-29 20:47:36 -04:00
|
|
|
if 'galactica' in model_name.lower():
|
2023-02-23 10:05:25 -05:00
|
|
|
reply = fix_galactica(reply)
|
|
|
|
return reply, reply, generate_basic_html(reply)
|
2023-03-29 20:47:36 -04:00
|
|
|
elif any((k in shared.model_name.lower() for k in ['gpt4chan', 'gpt-4chan'])):
|
2023-02-23 10:05:25 -05:00
|
|
|
reply = fix_gpt4chan(reply)
|
|
|
|
return reply, 'Only applicable for GALACTICA models.', generate_4chan_html(reply)
|
|
|
|
else:
|
|
|
|
return reply, 'Only applicable for GALACTICA models.', generate_basic_html(reply)
|
|
|
|
else:
|
|
|
|
return reply
|
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-03-22 14:40:20 -04:00
|
|
|
def set_manual_seed(seed):
|
|
|
|
if seed != -1:
|
|
|
|
torch.manual_seed(seed)
|
|
|
|
if torch.cuda.is_available():
|
|
|
|
torch.cuda.manual_seed_all(seed)
|
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-03-27 12:23:59 -04:00
|
|
|
def stop_everything_event():
|
|
|
|
shared.stop_everything = True
|
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-04-06 00:22:15 -04:00
|
|
|
def generate_reply(question, generate_state, eos_token=None, stopping_strings=[]):
|
2023-03-05 08:12:43 -05:00
|
|
|
clear_torch_cache()
|
2023-04-06 00:22:15 -04:00
|
|
|
set_manual_seed(generate_state['seed'])
|
2023-03-27 12:23:59 -04:00
|
|
|
shared.stop_everything = False
|
2023-04-06 00:22:15 -04:00
|
|
|
generate_params = {}
|
2023-03-03 19:24:32 -05:00
|
|
|
t0 = time.time()
|
|
|
|
|
2023-03-23 20:38:20 -04:00
|
|
|
original_question = question
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-04-07 10:14:32 -04:00
|
|
|
question = apply_extensions(question, 'input')
|
2023-03-23 20:38:20 -04:00
|
|
|
if shared.args.verbose:
|
2023-04-07 10:14:32 -04:00
|
|
|
print(f'\n\n{question}\n--------------------\n')
|
2023-03-23 20:38:20 -04:00
|
|
|
|
2023-03-03 19:24:32 -05:00
|
|
|
# These models are not part of Hugging Face, so we handle them
|
|
|
|
# separately and terminate the function call earlier
|
2023-03-31 13:27:01 -04:00
|
|
|
if any((shared.is_RWKV, shared.is_llamacpp)):
|
2023-04-06 00:22:15 -04:00
|
|
|
for k in ['temperature', 'top_p', 'top_k', 'repetition_penalty']:
|
|
|
|
generate_params[k] = generate_state[k]
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params['token_count'] = generate_state['max_new_tokens']
|
2023-03-12 00:53:08 -05:00
|
|
|
try:
|
|
|
|
if shared.args.no_stream:
|
2023-04-06 00:22:15 -04:00
|
|
|
reply = shared.model.generate(context=question, **generate_params)
|
2023-04-06 23:15:45 -04:00
|
|
|
output = original_question + reply
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-04-07 10:14:32 -04:00
|
|
|
reply = original_question + apply_extensions(reply, 'output')
|
2023-03-01 17:11:26 -05:00
|
|
|
yield formatted_outputs(reply, shared.model_name)
|
2023-03-12 00:53:08 -05:00
|
|
|
else:
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-03-15 11:51:13 -04:00
|
|
|
yield formatted_outputs(question, shared.model_name)
|
2023-03-23 20:38:20 -04:00
|
|
|
|
2023-03-12 00:53:08 -05:00
|
|
|
# RWKV has proper streaming, which is very nice.
|
|
|
|
# No need to generate 8 tokens at a time.
|
2023-04-06 00:22:15 -04:00
|
|
|
for reply in shared.model.generate_with_streaming(context=question, **generate_params):
|
2023-04-06 23:15:45 -04:00
|
|
|
output = original_question + reply
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-04-07 10:14:32 -04:00
|
|
|
reply = original_question + apply_extensions(reply, 'output')
|
2023-03-12 00:53:08 -05:00
|
|
|
yield formatted_outputs(reply, shared.model_name)
|
2023-03-23 20:38:20 -04:00
|
|
|
|
2023-03-20 19:36:02 -04:00
|
|
|
except Exception:
|
2023-03-20 12:36:52 -04:00
|
|
|
traceback.print_exc()
|
2023-03-12 00:53:08 -05:00
|
|
|
finally:
|
|
|
|
t1 = time.time()
|
2023-03-31 16:00:55 -04:00
|
|
|
original_tokens = len(encode(original_question)[0])
|
|
|
|
new_tokens = len(encode(output)[0]) - original_tokens
|
2023-04-07 10:14:32 -04:00
|
|
|
print(f'Output generated in {(t1-t0):.2f} seconds ({new_tokens/(t1-t0):.2f} tokens/s, {new_tokens} tokens, context {original_tokens})')
|
2023-03-12 00:53:08 -05:00
|
|
|
return
|
2023-02-27 21:03:35 -05:00
|
|
|
|
2023-04-06 00:22:15 -04:00
|
|
|
input_ids = encode(question, generate_state['max_new_tokens'])
|
2023-03-08 09:26:29 -05:00
|
|
|
original_input_ids = input_ids
|
|
|
|
output = input_ids[0]
|
2023-03-22 23:12:40 -04:00
|
|
|
|
2023-03-14 15:04:17 -04:00
|
|
|
cuda = not any((shared.args.cpu, shared.args.deepspeed, shared.args.flexgen))
|
2023-03-13 09:32:28 -04:00
|
|
|
eos_token_ids = [shared.tokenizer.eos_token_id] if shared.tokenizer.eos_token_id is not None else []
|
2023-03-12 13:54:58 -04:00
|
|
|
if eos_token is not None:
|
|
|
|
eos_token_ids.append(int(encode(eos_token)[0][-1]))
|
2023-03-08 10:13:40 -05:00
|
|
|
stopping_criteria_list = transformers.StoppingCriteriaList()
|
2023-03-23 20:38:20 -04:00
|
|
|
if type(stopping_strings) is list and len(stopping_strings) > 0:
|
|
|
|
t = [encode(string, 0, add_special_tokens=False) for string in stopping_strings]
|
2023-03-08 10:13:40 -05:00
|
|
|
stopping_criteria_list.append(_SentinelTokenStoppingCriteria(sentinel_token_ids=t, starting_idx=len(input_ids[0])))
|
2023-02-23 10:05:25 -05:00
|
|
|
|
|
|
|
if not shared.args.flexgen:
|
2023-04-07 10:14:32 -04:00
|
|
|
for k in ['max_new_tokens', 'do_sample', 'temperature', 'top_p', 'typical_p', 'repetition_penalty', 'encoder_repetition_penalty', 'top_k', 'min_length', 'no_repeat_ngram_size', 'num_beams', 'penalty_alpha', 'length_penalty', 'early_stopping']:
|
2023-04-06 00:22:15 -04:00
|
|
|
generate_params[k] = generate_state[k]
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params['eos_token_id'] = eos_token_ids
|
|
|
|
generate_params['stopping_criteria'] = stopping_criteria_list
|
2023-04-06 00:22:15 -04:00
|
|
|
if shared.args.no_stream:
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params['min_length'] = 0
|
2023-02-23 10:05:25 -05:00
|
|
|
else:
|
2023-04-07 10:14:32 -04:00
|
|
|
for k in ['max_new_tokens', 'do_sample', 'temperature']:
|
2023-04-06 00:22:15 -04:00
|
|
|
generate_params[k] = generate_state[k]
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params['stop'] = generate_state['eos_token_ids'][-1]
|
2023-04-06 00:22:15 -04:00
|
|
|
if not shared.args.no_stream:
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params['max_new_tokens'] = 8
|
2023-04-06 00:22:15 -04:00
|
|
|
|
2023-03-22 23:12:40 -04:00
|
|
|
if shared.args.no_cache:
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params.update({'use_cache': False})
|
2023-02-23 10:05:25 -05:00
|
|
|
if shared.args.deepspeed:
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params.update({'synced_gpus': True})
|
2023-02-23 10:05:25 -05:00
|
|
|
if shared.soft_prompt:
|
|
|
|
inputs_embeds, filler_input_ids = generate_softprompt_input_tensors(input_ids)
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params.update({'inputs_embeds': inputs_embeds})
|
|
|
|
generate_params.update({'inputs': filler_input_ids})
|
2023-02-23 10:05:25 -05:00
|
|
|
else:
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params.update({'inputs': input_ids})
|
2023-03-05 08:12:43 -05:00
|
|
|
|
2023-03-12 00:31:45 -05:00
|
|
|
try:
|
|
|
|
# Generate the entire reply at once.
|
|
|
|
if shared.args.no_stream:
|
2023-02-23 10:05:25 -05:00
|
|
|
with torch.no_grad():
|
2023-03-14 15:04:17 -04:00
|
|
|
output = shared.model.generate(**generate_params)[0]
|
|
|
|
if cuda:
|
|
|
|
output = output.cuda()
|
2023-02-23 10:05:25 -05:00
|
|
|
if shared.soft_prompt:
|
|
|
|
output = torch.cat((input_ids[0], output[filler_input_ids.shape[1]:]))
|
|
|
|
|
2023-03-23 20:38:20 -04:00
|
|
|
new_tokens = len(output) - len(input_ids[0])
|
|
|
|
reply = decode(output[-new_tokens:])
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-04-07 10:14:32 -04:00
|
|
|
reply = original_question + apply_extensions(reply, 'output')
|
2023-03-08 00:46:35 -05:00
|
|
|
|
2023-03-12 00:31:45 -05:00
|
|
|
yield formatted_outputs(reply, shared.model_name)
|
2023-03-08 00:46:35 -05:00
|
|
|
|
2023-03-12 00:31:45 -05:00
|
|
|
# Stream the reply 1 token at a time.
|
|
|
|
# This is based on the trick of using 'stopping_criteria' to create an iterator.
|
|
|
|
elif not shared.args.flexgen:
|
|
|
|
|
|
|
|
def generate_with_callback(callback=None, **kwargs):
|
|
|
|
kwargs['stopping_criteria'].append(Stream(callback_func=callback))
|
|
|
|
clear_torch_cache()
|
|
|
|
with torch.no_grad():
|
|
|
|
shared.model.generate(**kwargs)
|
|
|
|
|
|
|
|
def generate_with_streaming(**kwargs):
|
|
|
|
return Iteratorize(generate_with_callback, kwargs, callback=None)
|
|
|
|
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-03-15 11:51:13 -04:00
|
|
|
yield formatted_outputs(original_question, shared.model_name)
|
2023-03-14 15:04:17 -04:00
|
|
|
with generate_with_streaming(**generate_params) as generator:
|
2023-03-12 00:31:45 -05:00
|
|
|
for output in generator:
|
|
|
|
if shared.soft_prompt:
|
|
|
|
output = torch.cat((input_ids[0], output[filler_input_ids.shape[1]:]))
|
2023-03-23 20:38:20 -04:00
|
|
|
|
|
|
|
new_tokens = len(output) - len(input_ids[0])
|
|
|
|
reply = decode(output[-new_tokens:])
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-04-07 10:14:32 -04:00
|
|
|
reply = original_question + apply_extensions(reply, 'output')
|
2023-03-12 00:31:45 -05:00
|
|
|
|
2023-03-12 13:54:58 -04:00
|
|
|
if output[-1] in eos_token_ids:
|
2023-03-12 00:31:45 -05:00
|
|
|
break
|
2023-03-12 03:56:35 -04:00
|
|
|
yield formatted_outputs(reply, shared.model_name)
|
|
|
|
|
2023-03-12 00:31:45 -05:00
|
|
|
# Stream the output naively for FlexGen since it doesn't support 'stopping_criteria'
|
|
|
|
else:
|
2023-04-06 23:15:45 -04:00
|
|
|
for i in range(generate_state['max_new_tokens'] // 8 + 1):
|
2023-03-12 00:31:45 -05:00
|
|
|
clear_torch_cache()
|
|
|
|
with torch.no_grad():
|
2023-03-14 15:04:17 -04:00
|
|
|
output = shared.model.generate(**generate_params)[0]
|
2023-03-12 00:04:28 -05:00
|
|
|
if shared.soft_prompt:
|
|
|
|
output = torch.cat((input_ids[0], output[filler_input_ids.shape[1]:]))
|
2023-03-23 20:38:20 -04:00
|
|
|
|
|
|
|
new_tokens = len(output) - len(original_input_ids[0])
|
|
|
|
reply = decode(output[-new_tokens:])
|
2023-04-01 19:14:43 -04:00
|
|
|
if not shared.is_chat():
|
2023-04-07 10:14:32 -04:00
|
|
|
reply = original_question + apply_extensions(reply, 'output')
|
2023-03-08 00:46:35 -05:00
|
|
|
|
2023-03-12 13:54:58 -04:00
|
|
|
if np.count_nonzero(np.isin(input_ids[0], eos_token_ids)) < np.count_nonzero(np.isin(output, eos_token_ids)):
|
2023-02-25 22:36:04 -05:00
|
|
|
break
|
2023-03-12 03:56:35 -04:00
|
|
|
yield formatted_outputs(reply, shared.model_name)
|
2023-03-08 00:46:35 -05:00
|
|
|
|
2023-02-23 10:05:25 -05:00
|
|
|
input_ids = np.reshape(output, (1, output.shape[0]))
|
2023-03-12 00:31:45 -05:00
|
|
|
if shared.soft_prompt:
|
|
|
|
inputs_embeds, filler_input_ids = generate_softprompt_input_tensors(input_ids)
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params.update({'inputs_embeds': inputs_embeds})
|
|
|
|
generate_params.update({'inputs': filler_input_ids})
|
2023-03-22 23:22:14 -04:00
|
|
|
else:
|
2023-04-07 10:14:32 -04:00
|
|
|
generate_params.update({'inputs': input_ids})
|
2023-03-08 00:46:35 -05:00
|
|
|
|
2023-03-08 06:02:17 -05:00
|
|
|
yield formatted_outputs(reply, shared.model_name)
|
2023-02-25 22:36:04 -05:00
|
|
|
|
2023-03-20 19:36:02 -04:00
|
|
|
except Exception:
|
2023-03-20 12:36:52 -04:00
|
|
|
traceback.print_exc()
|
2023-03-12 00:31:45 -05:00
|
|
|
finally:
|
|
|
|
t1 = time.time()
|
2023-03-31 16:00:55 -04:00
|
|
|
original_tokens = len(original_input_ids[0])
|
2023-04-06 23:15:45 -04:00
|
|
|
new_tokens = len(output) - original_tokens
|
2023-04-07 10:14:32 -04:00
|
|
|
print(f'Output generated in {(t1-t0):.2f} seconds ({new_tokens/(t1-t0):.2f} tokens/s, {new_tokens} tokens, context {original_tokens})')
|
2023-03-12 00:31:45 -05:00
|
|
|
return
|