Skip to content

Commit

Permalink
[vicuna] Add streaming of tokens
Browse files Browse the repository at this point in the history
Signed-Off-by: Gaurav Shukla <[email protected]>
  • Loading branch information
Shukla-Gaurav committed Jun 23, 2023
1 parent 28f4d44 commit 644c3ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions apps/language_models/src/pipelines/vicuna_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@ def generate(self, prompt, cli=False):
logits = generated_token_op["logits"]
pkv = generated_token_op["pkv"]
detok = generated_token_op["detok"]
yield detok

res.append(detok)
res_tokens.append(token)
Expand Down Expand Up @@ -502,6 +503,8 @@ def generate(self, prompt, cli=False):
res.append(detok)
if cli:
print(f"{detok}", end=" ", flush=True)
yield detok

if self.device == "cuda":
del sec_vic, pkv, logits
torch.cuda.empty_cache()
Expand Down
8 changes: 3 additions & 5 deletions apps/stable_diffusion/web/ui/stablelm_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,14 @@ def chat(curr_system_message, history, model, device, precision):
)
prompt = messages.strip()
print("prompt = ", prompt)
sentence = vicuna_model.generate(prompt)

partial_text = ""
for new_text in sentence.split(" "):
for new_text in vicuna_model.generate(prompt):
# print(new_text)
partial_text += new_text + " "
history[-1][1] = partial_text
# Yield an empty string to cleanup the message textbox and the updated conversation history
yield history
history[-1][1] = sentence
return history

# else Model is StableLM
Expand Down Expand Up @@ -124,13 +122,13 @@ def chat(curr_system_message, history, model, device, precision):
"TheBloke/vicuna-7B-1.1-HF",
],
)
supported_devices = available_devices
supported_devices = available_devices + ["AMD-AIE"]
enabled = len(supported_devices) > 0
device = gr.Dropdown(
label="Device",
value=supported_devices[0]
if enabled
else "Only CUDA Supported for now",
else "No devices supported for now",
choices=supported_devices,
interactive=enabled,
)
Expand Down

0 comments on commit 644c3ce

Please sign in to comment.