ai智能聊天机器人

2023-08-14 15:19 综合百科 0阅读 投稿:小七

这个简短的教程将使用Microsoft DialoGPT模型,拥抱面部空间和Gradio干扰构建一个简单的聊天机器人。您将能够使用类似的技术在 5 分钟内开发和自定义您自己的应用程序。


ai智能聊天机器人图1

1. 创建新空间

  1. 转到 hf.co 并创建一个免费帐户。之后,单击右上角的显示图像,然后选择“新空间”选项。
  2. 在表单中填写应用程序名称、许可证、空间硬件和可见性。


ai智能聊天机器人图2

按“创建空间”以初始化应用程序。您可以克隆存储库并从本地系统推送文件,或者使用浏览器在拥抱脸上创建和编辑文件。

ai智能聊天机器人图3


图片来自AI ChatBot

2.创建聊天机器人应用程序文件

我们将单击“文件”选项卡>+添加文件>创建新文件。

ai智能聊天机器人图4

创建 Gradio 接口。你可以复制我的代码。

ai智能聊天机器人图5

我已经加载了“microsoft/dialopGPT-large”标记器和模型,并创建了一个“预测”函数来获取响应和创建历史记录。

from transformers import AutoModelForCausalLM, AutoTokenizerimport gradio as grimport torchtitle = "AI ChatBot"description = "A State-of-the-Art Large-scale Pretrained Response generation model (DialoGPT)"examples = [["How are you?"]]tokenizer = AutoTokenizer.from_pretrained("microsoft/DialoGPT-large")model = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-large")def predict(input, history=[]): # tokenize the new input sentence new_user_input_ids = tokenizer.encode( input + tokenizer.eos_token, return_tensors="pt" ) # append the new user input tokens to the chat history bot_input_ids = torch.cat([torch.LongTensor(history), new_user_input_ids], dim=-1) # generate a response history = model.generate( bot_input_ids, max_length=4000, pad_token_id=tokenizer.eos_token_id ).tolist() # convert the tokens to text, and then split the responses into lines respOnse= tokenizer.decode(history[0]).split("<|endoftext|>") # print('decoded_response-->>'+str(response)) respOnse= [ (response[i], response[i + 1]) for i in range(0, len(response) - 1, 2) ] # convert to tuples of list # print('response-->>'+str(response)) return response, historygr.Interface( fn=predict, title=title, description=description, examples=examples, inputs=["text", "state"], outputs=["chatbot", "state"], theme="finlaymacklon/boxy_violet",).launch()

此外,我还为我的应用程序提供了一个自定义主题:boxy_violet。您可以浏览Gradio主题库,根据您的口味选择主题。

3. 创建需求文件

现在,我们需要创建一个“需求.txt”文件并添加所需的 Python 包。

ai智能聊天机器人图6
transformerstorch

之后,您的应用程序将开始构建,并在几分钟内下载模型并加载模型推理。

ai智能聊天机器人图7

4. Gradio 演示

Gradio应用程序看起来很棒。我们只需要为每个不同的模型架构师创建一个“预测”函数,以获得响应并维护历史记录。

您现在可以在kingabzpro / AI-ChatBot上与应用程序聊天和互动,或使用 https://kingabzpro-ai-chatbot.hf.space 将您的应用程序嵌入您的网站。

ai智能聊天机器人图8

你还在困惑吗?在 Spaces 上查找数百个聊天机器人应用程序,以获得灵感并了解模型推理。

例如,如果您有一个在“LLaMA-7B”上微调的模式。搜索模型并向下滚动以查看模型的各种实现。

ai智能聊天机器人图9

结论

总之,本博客提供了一个快速简便的教程,介绍如何在短短 5 分钟内使用 Hugging Face 和 Gradio 创建 AI 聊天机器人。通过分步说明和可自定义的选项,任何人都可以轻松创建他们的聊天机器人。

这很有趣,我希望你学到了一些东西。请在评论部分分享您的Gradio演示。如果您正在寻找更简单的解决方案,请查看OpenChat:在几分钟内构建自定义聊天机器人的免费和简单平台。

原文链接:教你5分钟内使用Hugging Face和 Gradio 构建 AI 聊天机器人 (https://www.mvrlink.com/build-ai-chatbot/)

声明:若水百科所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系youzivr@vip.qq.com