user
commited on
Commit
·
b141504
1
Parent(s):
a483d55
Update space
Browse files
app.py
CHANGED
@@ -1,63 +1,38 @@
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
-
from huggingface_hub import InferenceClient
|
3 |
|
4 |
"""
|
5 |
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
6 |
"""
|
7 |
-
|
|
|
8 |
|
9 |
|
10 |
-
def
|
11 |
-
|
12 |
-
|
13 |
-
system_message,
|
14 |
-
max_tokens,
|
15 |
-
temperature,
|
16 |
-
top_p,
|
17 |
-
):
|
18 |
-
messages = [{"role": "system", "content": system_message}]
|
19 |
|
20 |
-
|
21 |
-
if val[0]:
|
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 |
-
max_tokens=max_tokens,
|
33 |
-
stream=True,
|
34 |
-
temperature=temperature,
|
35 |
-
top_p=top_p,
|
36 |
-
):
|
37 |
-
token = message.choices[0].delta.content
|
38 |
|
39 |
-
|
40 |
-
|
41 |
|
42 |
-
""
|
43 |
-
|
44 |
-
""
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
gr.Slider(
|
52 |
-
minimum=0.1,
|
53 |
-
maximum=1.0,
|
54 |
-
value=0.95,
|
55 |
-
step=0.05,
|
56 |
-
label="Top-p (nucleus sampling)",
|
57 |
-
),
|
58 |
-
],
|
59 |
-
)
|
60 |
-
|
61 |
-
|
62 |
-
if __name__ == "__main__":
|
63 |
-
demo.launch()
|
|
|
1 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
2 |
+
import torch
|
3 |
import gradio as gr
|
|
|
4 |
|
5 |
"""
|
6 |
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
7 |
"""
|
8 |
+
tokenizer = AutoTokenizer.from_pretrained("Dennterry/okt_bot")
|
9 |
+
model = AutoModelForCausalLM.from_pretrained("Dennterry/okt_bot")
|
10 |
|
11 |
|
12 |
+
def dialogpt(text):
|
13 |
+
# encode the new user input, add the eos_token and return a tensor in Pytorch
|
14 |
+
for step in range(50000):
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
+
new_user_input_ids = tokenizer.encode(text + tokenizer.eos_token, return_tensors='pt')
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
# append the new user input tokens to the chat history
|
19 |
+
bot_input_ids = torch.cat([chat_history_ids, new_user_input_ids], dim=-1) if step > 0 else new_user_input_ids
|
20 |
|
21 |
+
# generated a response while limiting the total chat history to 1000 tokens,
|
22 |
+
chat_history_ids = model.generate(bot_input_ids, max_length=1000, pad_token_id=tokenizer.eos_token_id)
|
23 |
|
24 |
+
# pretty print last ouput tokens from bot
|
25 |
+
return tokenizer.decode(chat_history_ids[:, bot_input_ids.shape[-1]:][0], skip_special_tokens=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
+
inputs = gr.inputs.Textbox(lines=1, label="Input Text")
|
28 |
+
outputs = gr.outputs.Textbox(label="DialoGPT")
|
29 |
|
30 |
+
title = "DialoGPT"
|
31 |
+
description = "demo for Microsoft DialoGPT with Hugging Face transformers. To use it, simply input text or click one of the examples text to load them. Read more at the links below. *This is not a Microsoft product and is developed for Gradio*"
|
32 |
+
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1911.00536'>DialoGPT: Large-Scale Generative Pre-training for Conversational Response Generation</a> | <a href='https://github.com/microsoft/DialoGPT'>Github Repo</a> | <a href='https://huggingface.co/microsoft/DialoGPT-large'>Hugging Face DialoGPT-large</a></p>"
|
33 |
+
examples = [
|
34 |
+
["Hi, how are you?"],
|
35 |
+
["How far away is the moon?"],
|
36 |
+
]
|
37 |
+
|
38 |
+
gr.Interface(dialogpt, inputs, outputs, title=title, description=description, article=article, examples=examples).launch(debug=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|