Spaces:
Runtime error
Runtime error
arnavnextai
commited on
Commit
•
cc4bc90
1
Parent(s):
7f6f835
Update app.py
Browse files
app.py
CHANGED
@@ -1,52 +1,63 @@
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
|
|
|
|
3 |
|
4 |
-
""
|
5 |
-
|
6 |
-
""
|
7 |
-
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
8 |
|
9 |
|
10 |
-
|
|
|
11 |
message,
|
12 |
history: list[tuple[str, str]],
|
13 |
system_message,
|
14 |
max_tokens,
|
15 |
temperature,
|
16 |
-
top_p
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
messages.append({"role": "user", "content": val[0]})
|
23 |
-
if val[1]:
|
24 |
-
messages.append({"role": "assistant", "content": val[1]})
|
25 |
|
26 |
-
|
27 |
|
28 |
-
|
|
|
|
|
|
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
35 |
top_p=top_p,
|
36 |
-
|
37 |
-
|
|
|
|
|
38 |
|
39 |
-
|
40 |
-
|
|
|
|
|
41 |
|
42 |
|
43 |
"""
|
44 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
45 |
"""
|
46 |
demo = gr.ChatInterface(
|
47 |
-
|
|
|
48 |
additional_inputs=[
|
49 |
-
gr.Textbox(value="
|
50 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
51 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
52 |
gr.Slider(
|
@@ -57,6 +68,15 @@ demo = gr.ChatInterface(
|
|
57 |
label="Top-p (nucleus sampling)",
|
58 |
),
|
59 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
)
|
61 |
|
62 |
|
|
|
1 |
+
from threading import Thread
|
2 |
+
|
3 |
import gradio as gr
|
4 |
from huggingface_hub import InferenceClient
|
5 |
+
import spaces
|
6 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM, TextIteratorStreamer
|
7 |
|
8 |
+
model_id = "CohereForAI/aya-expanse-8b"
|
9 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
10 |
+
model = AutoModelForCausalLM.from_pretrained(model_id).to("cuda")
|
|
|
11 |
|
12 |
|
13 |
+
@spaces.GPU
|
14 |
+
def generate(
|
15 |
message,
|
16 |
history: list[tuple[str, str]],
|
17 |
system_message,
|
18 |
max_tokens,
|
19 |
temperature,
|
20 |
+
top_p):
|
21 |
+
|
22 |
+
conversation = [{"role": "system", "content": system_message}]
|
23 |
+
for user, assistant in history:
|
24 |
+
conversation.extend([{"role": "user", "content": user}, {"role": "assistant", "content": assistant}])
|
25 |
+
conversation.append({"role": "user", "content": message})
|
|
|
|
|
|
|
26 |
|
27 |
+
input_ids = tokenizer.apply_chat_template(conversation, tokenize=True, add_generation_prompt=True, return_tensors="pt")
|
28 |
|
29 |
+
# if input_ids.shape[1] > MAX_INPUT_TOKEN_LENGTH:
|
30 |
+
# input_ids = input_ids[:, -MAX_INPUT_TOKEN_LENGTH:]
|
31 |
+
# gr.Warning(f"Trimmed input from conversation as it was longer than {MAX_INPUT_TOKEN_LENGTH} tokens.")
|
32 |
+
input_ids = input_ids.to(model.device)
|
33 |
|
34 |
+
streamer = TextIteratorStreamer(tokenizer, timeout=10.0, skip_prompt=True, skip_special_tokens=True)
|
35 |
+
|
36 |
+
generate_kwargs = dict(
|
37 |
+
{"input_ids": input_ids},
|
38 |
+
streamer=streamer,
|
39 |
+
max_new_tokens=max_tokens,
|
40 |
+
do_sample=True,
|
41 |
top_p=top_p,
|
42 |
+
temperature=temperature,
|
43 |
+
)
|
44 |
+
t = Thread(target=model.generate, kwargs=generate_kwargs)
|
45 |
+
t.start()
|
46 |
|
47 |
+
outputs = []
|
48 |
+
for text in streamer:
|
49 |
+
outputs.append(text)
|
50 |
+
yield "".join(outputs)
|
51 |
|
52 |
|
53 |
"""
|
54 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
55 |
"""
|
56 |
demo = gr.ChatInterface(
|
57 |
+
generate,
|
58 |
+
cache_examples=False,
|
59 |
additional_inputs=[
|
60 |
+
gr.Textbox(value="Je bent een vriendelijke, behulpzame chatbot", label="System message"),
|
61 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
62 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
63 |
gr.Slider(
|
|
|
68 |
label="Top-p (nucleus sampling)",
|
69 |
),
|
70 |
],
|
71 |
+
examples=[
|
72 |
+
["""Vraagje: welk woord hoort er niet in dit rijtje thuis: "auto, vliegtuig, geit, bus"?"""],
|
73 |
+
["Schrijf een nieuwsbericht voor De Speld over de inzet van een kudde geiten door het Nederlands Forensisch Instituut"],
|
74 |
+
["Wat zijn 3 leuke dingen om te doen als ik een weekendje naar Friesland ga?"],
|
75 |
+
["Met wie trad clown Bassie op?"],
|
76 |
+
["Kan je naar de maan fietsen?"],
|
77 |
+
["Wat is het belang van open source taalmodellen?"],
|
78 |
+
],
|
79 |
+
title="Aya Expanse 8B demo",
|
80 |
)
|
81 |
|
82 |
|