Upload generation_utils.py with huggingface_hub
Browse files- generation_utils.py +83 -0
generation_utils.py
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from typing import List
|
| 2 |
+
from queue import Queue
|
| 3 |
+
|
| 4 |
+
import torch
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
def build_chat_input(model, tokenizer, messages: List[dict], max_new_tokens: int=0):
|
| 8 |
+
def _parse_messages(messages, split_role="user"):
|
| 9 |
+
system, rounds = "", []
|
| 10 |
+
round = []
|
| 11 |
+
for i, message in enumerate(messages):
|
| 12 |
+
if message["role"] == "system":
|
| 13 |
+
assert i == 0
|
| 14 |
+
system = message["content"]
|
| 15 |
+
continue
|
| 16 |
+
if message["role"] == split_role and round:
|
| 17 |
+
rounds.append(round)
|
| 18 |
+
round = []
|
| 19 |
+
round.append(message)
|
| 20 |
+
if round:
|
| 21 |
+
rounds.append(round)
|
| 22 |
+
return system, rounds
|
| 23 |
+
|
| 24 |
+
max_new_tokens = max_new_tokens or model.generation_config.max_new_tokens
|
| 25 |
+
max_input_tokens = model.config.model_max_length - max_new_tokens
|
| 26 |
+
system, rounds = _parse_messages(messages, split_role="user")
|
| 27 |
+
system_tokens = tokenizer.encode(system)
|
| 28 |
+
max_history_tokens = max_input_tokens - len(system_tokens)
|
| 29 |
+
|
| 30 |
+
history_tokens = []
|
| 31 |
+
for round in rounds[::-1]:
|
| 32 |
+
round_tokens = []
|
| 33 |
+
for message in round:
|
| 34 |
+
if message["role"] == "user":
|
| 35 |
+
round_tokens.append(model.generation_config.user_token_id)
|
| 36 |
+
else:
|
| 37 |
+
round_tokens.append(model.generation_config.assistant_token_id)
|
| 38 |
+
round_tokens.extend(tokenizer.encode(message["content"]))
|
| 39 |
+
if len(history_tokens) == 0 or len(history_tokens) + len(round_tokens) <= max_history_tokens:
|
| 40 |
+
history_tokens = round_tokens + history_tokens # concat left
|
| 41 |
+
if len(history_tokens) < max_history_tokens:
|
| 42 |
+
continue
|
| 43 |
+
break
|
| 44 |
+
|
| 45 |
+
input_tokens = system_tokens + history_tokens
|
| 46 |
+
if messages[-1]["role"] != "assistant":
|
| 47 |
+
input_tokens.append(model.generation_config.assistant_token_id)
|
| 48 |
+
input_tokens = input_tokens[-max_input_tokens:] # truncate left
|
| 49 |
+
return torch.LongTensor([input_tokens]).to(model.device)
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
class TextIterStreamer:
|
| 53 |
+
def __init__(self, tokenizer, skip_prompt=False, skip_special_tokens=False):
|
| 54 |
+
self.tokenizer = tokenizer
|
| 55 |
+
self.skip_prompt = skip_prompt
|
| 56 |
+
self.skip_special_tokens = skip_special_tokens
|
| 57 |
+
self.tokens = []
|
| 58 |
+
self.text_queue = Queue()
|
| 59 |
+
self.next_tokens_are_prompt = True
|
| 60 |
+
|
| 61 |
+
def put(self, value):
|
| 62 |
+
if self.skip_prompt and self.next_tokens_are_prompt:
|
| 63 |
+
self.next_tokens_are_prompt = False
|
| 64 |
+
else:
|
| 65 |
+
if len(value.shape) > 1:
|
| 66 |
+
value = value[0]
|
| 67 |
+
self.tokens.extend(value.tolist())
|
| 68 |
+
self.text_queue.put(
|
| 69 |
+
self.tokenizer.decode(self.tokens, skip_special_tokens=self.skip_special_tokens))
|
| 70 |
+
|
| 71 |
+
def end(self):
|
| 72 |
+
self.text_queue.put(None)
|
| 73 |
+
|
| 74 |
+
def __iter__(self):
|
| 75 |
+
return self
|
| 76 |
+
|
| 77 |
+
def __next__(self):
|
| 78 |
+
value = self.text_queue.get()
|
| 79 |
+
if value is None:
|
| 80 |
+
raise StopIteration()
|
| 81 |
+
else:
|
| 82 |
+
return value
|
| 83 |
+
|