当前位置:   article > 正文

InternLM春节训练营笔记- L2轻松玩转书生浦语大模型趣味Demo

InternLM春节训练营笔记- L2轻松玩转书生浦语大模型趣味Demo

目录

1. 大模型及InternLM模型介绍

2. InternLM-Chat-7B 智能对话Demo

3. Lagent 只能体工具调用Demo

4. 浦语灵笔图文创作理解Demo

---------------------------------------------------------------------------------------------------------------------------------

1. 大模型及InternLM模型介绍

1.1 什么是大模型

大模型:人工智能领域中参数数量巨大、拥有庞大计算能力和参数规模的模型

1.2  特点及应用
利用大量数据进行训练
拥有数十亿甚至数千亿个参数
模型在各种任务重展现出惊人的性能

1.3 InternLM 模型全链条开源突出成果

 InternLM 模型全链条开源

  InternLM 是一个开源的轻量级训练框架,旨在支持大模型训练而无需大量的依赖。通过单一的代码库,它支持在拥有数千个 GPU 的大型集群上进行预训练,并在单个 GPU 上进行微调,同时实现了卓越的性能优化。在 1024 个 GPU 上训练时,InternLM 可以实现近 90% 的加速效率。

  基于 InternLM 训练框架,上海人工智能实验室已经发布了两个开源的预训练模型:InternLM-7B 和 InternLM-20B

  Lagent 是一个轻量级、开源的基于大语言模型的智能体(agent)框架,支持用户快速地将一个大语言模型转变为多种类型的智能体,并提供了一些典型工具为大语言模型赋能。通过 Lagent 框架可以更好的发挥 InternLM 的全部性能。

---------------------------------------------------------------------------------------------------------------------------------

2. InternLM-Chat-7B 智能对话Demo

这是本节课程的第一个对话Demo

2.1 使用模型简介

2.2  实际操作搭建InternLM-Chat-7B 智能对话Demo

2.1 环境准备

在 InternStudio 平台中选择 A100(1/4) 的配置,如下图所示镜像选择 Cuda11.7-conda,如下图所示:

接下来进入开发机,并且打开其中的终端开始环境配置、模型下载和运行 demo

第1步: 进入conda环境

在terminal 中输入 bash, 来进入conda环境

输入 conda info -e  查看当前conda环境的信息

第2步: 克隆 Pytorch 环境

进入 conda 环境之后,使用以下命令从本地克隆一个已有的 pytorch 2.0.1 的环境

  1. bash # 请每次使用 jupyter lab 打开终端时务必先执行 bash 命令进入 bash 中
  2. bash /root/share/install_conda_env_internlm_base.sh internlm-demo # 执行该脚本文件来安装项目实验环境

看到下图文案的提示的话,环境就已经搭建好了

第3步: 需要激活一下环境

conda activate internlm-demo

第4步: 需要激活一下环境

升级环境,并在环境中安装运行 demo 所需要的依赖

  1. # 升级pip
  2. python -m pip install --upgrade pip
  3. pip install modelscope==1.9.5
  4. pip install transformers==4.35.2
  5. pip install streamlit==1.24.0
  6. pip install sentencepiece==0.1.99
  7. pip install accelerate==0.24.1

这一步是更新pip, 可能会出现warning,直接忽略即可,达到下图状态就是成功

接着需要安装demo所需要的环境依赖

2.2 下载模型

InternStudio 在share 路径下已经准备了模型,推荐通过这种方式进行复制,比较快

  1. mkdir -p /root/model/Shanghai_AI_Laboratory
  2. cp -r /root/share/temp/model_repos/internlm-chat-7b /root/model/Shanghai_AI_Laboratory

2.3 代码准备

第1步: 克隆整个仓库

首先 clone 代码,在 /root 路径下新建 code 目录,然后切换路径, clone 代码

完成后,可以通过点左侧点击文件目录查看是否完成

  1. cd /root/code
  2. git clone https://gitee.com/internlm/InternLM.git

第2步:切换到仓库的指定版本

tips: 同一个仓库用户可能会存在多次提交记录, 所以我们就需要切换到 指定的版本(commit id)

  1. cd InternLM
  2. git checkout 3028f07cb79e5b1d7342f4ad8d11efad3fd13d17

第3步: 更新模型的获取地址

将 /root/code/InternLM/web_demo.py 中 29 行和 33 行的模型更换为本地的 /root/model/Shanghai_AI_Laboratory/internlm-chat-7b

【重要】修改完成后,需要保存一下,不然之后运行的还是之前的版本

这步完成之后,基本我们就把所有的准备工作都做完了,接下来就是运行,会有两种运行方式:终端运行, 或者Webo Demo运行

2.4 终端运行

首先先切换到VSCode

(我们的所有文件都在我们的云盘里,所以切换成VSCode(IDE)不会对对文件源产生影响)

在 /root/code/InternLM 目录下新建一个 cli_demo.py 文件,将以下代码填入其中:

  1. import torch
  2. from transformers import AutoTokenizer, AutoModelForCausalLM
  3. model_name_or_path = "/root/model/Shanghai_AI_Laboratory/internlm-chat-7b"
  4. tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, trust_remote_code=True)
  5. model = AutoModelForCausalLM.from_pretrained(model_name_or_path, trust_remote_code=True, torch_dtype=torch.bfloat16, device_map='auto')
  6. model = model.eval()
  7. system_prompt = """You are an AI assistant whose name is InternLM (书生·浦语).
  8. - InternLM (书生·浦语) is a conversational language model that is developed by Shanghai AI Laboratory (上海人工智能实验室). It is designed to be helpful, honest, and harmless.
  9. - InternLM (书生·浦语) can understand and communicate fluently in the language chosen by the user such as English and 中文.
  10. """
  11. messages = [(system_prompt, '')]
  12. print("=============Welcome to InternLM chatbot, type 'exit' to exit.=============")
  13. while True:
  14. input_text = input("User >>> ")
  15. input_text = input_text.replace(' ', '')
  16. if input_text == "exit":
  17. break
  18. response, history = model.chat(tokenizer, input_text, history=messages)
  19. messages.append((input_text, response))
  20. print(f"robot >>> {response}")

接下的步骤是,我们要让上面的代码在终端运行:

1. 打开终端,从下方将terminal 的窗口向上调

2. 进入bash环境

bash

3.查看虚拟环境并切换虚拟环境

查看:conda info -e

切换:conda activate internlm-demo

然后在终端运行以下命令,即可体验 InternLM-Chat-7B 模型的对话能力。对话效果如下所示:

python /root/code/InternLM/cli_demo.py

可以尝试对话了

2.5 web demo 运行

Step1. 建立SSH连接

查看本教程5.2配置本地端口后,将端口映射到本地。在本地浏览器输入 http://127.0.0.1:6006 即可。

Tips: 配置本地端口是为了建立起通信,使得我们稍后在浏览器中的网页可以监听到我们现在开发机起的这个服务所返回给页面的数据

匹配的过程是:在本地生成公钥,然后将公钥给到internstudio, 建立通信tunnel

步骤①:在本地机器上打开 Power Shell 终端。在终端中,运行以下命令来生成 SSH 密钥对:(如下图所示)

ssh-keygen -t rsa

步骤②: 您将被提示选择密钥文件的保存位置,默认情况下是在 ~/.ssh/ 目录中。按 Enter 键接受默认值或输入自定义路径。

步骤③:公钥默认存储在 ~/.ssh/id_rsa.pub,可以通过系统自带的 cat 工具查看文件内容:(如下图所示)

cat ~\.ssh\id_rsa.pub

~ 是用户主目录的简写,.ssh 是SSH配置文件的默认存储目录,id_rsa.pub 是 SSH 公钥文件的默认名称。所以,cat ~\.ssh\id_rsa.pub 的意思是查看用户主目录下的 .ssh 目录中的 id_rsa.pub 文件的内容。

步骤④:将公钥复制到剪贴板中,然后回到 InternStudio 控制台,点击配置 SSH Key。如下图所示:

步骤⑤:将刚刚复制的公钥添加进入即可。

以上步骤是完成了SSH通信的建立,接下来需要更改端口,以实现我们稍后网页可以监听到我们服务发送的数据

步骤⑥:在本地终端输入以下指令 .6006 是在服务器中打开的端口,而 33090 是根据开发机的端口进行更改。如下图所示:

ssh -CNg -L 6006:127.0.0.1:6006 root@ssh.intern-ai.org.cn -p 33090

Step2. 运行Demo

进入文件夹,并运行demo

  1. cd /root/code/InternLM
  2. streamlit run web_demo.py --server.address 127.0.0.1 --server.port 6006

看到这个链接,说明运行成功,在浏览器中打开地址即可

Step3. 试玩Demo

---------------------------------------------------------------------------------------------------------------------------------

3.Lagent 只能体工具调用Demo

3.1 环境准备

本小节我们将使用 InternStudio 中的 A100(1/4) 机器、InternLM-Chat-7B 模型和 Lagent 框架部署一个智能工具调用 Demo。

Lagent 是一个轻量级、开源的基于大语言模型的智能体(agent)框架,支持用户快速地将一个大语言模型转变为多种类型的智能体,并提供了一些典型工具为大语言模型赋能。通过 Lagent 框架可以更好的发挥 InternLM 的全部性能。

下面我们就开始动手实现!

3.1 环境准备

选择和第一个 InternLM 一样的镜像环境,运行以下命令安装依赖,如果上一个 InternLM-Chat-7B 已经配置好环境不需要重复安装.

  1. # 升级pip
  2. python -m pip install --upgrade pip
  3. pip install modelscope==1.9.5
  4. pip install transformers==4.35.2
  5. pip install streamlit==1.24.0
  6. pip install sentencepiece==0.1.99
  7. pip install accelerate==0.24.1

 3.2 下载模型

InternStudio 在share 路径下已经准备了模型,推荐通过这种方式进行复制,比较快

如果之前有做完2的Demo的话,就不需要重复的下载模型

  1. mkdir -p /root/model/Shanghai_AI_Laboratory
  2. cp -r /root/share/temp/model_repos/internlm-chat-7b /root/model/Shanghai_AI_Laboratory

 3.2 克隆Lagent 的相关代码

这里一步是从云端的仓库把Lagent的所有相关代码拉倒本地,并且先安装环境

首先切换路径到 /root/code 克隆 lagent 仓库,并通过 pip install -e . 源码安装 Lagent

  1. cd /root/code
  2. git clone https://gitee.com/internlm/lagent.git
  3. cd /root/code/lagent
  4. git checkout 511b03889010c4811b1701abb153e02b8e94fb5e # 尽量保证和教程commit版本一致
  5. pip install -e . # 源码安装

 3.3 修改相关

由于代码修改的地方比较多,大家直接将 /root/code/lagent/examples/react_web_demo.py 内容替换为以下代码

【重要】 这里改完代码千万记得保存一下,不然运行的是旧代码

  1. import copy
  2. import os
  3. import streamlit as st
  4. from streamlit.logger import get_logger
  5. from lagent.actions import ActionExecutor, GoogleSearch, PythonInterpreter
  6. from lagent.agents.react import ReAct
  7. from lagent.llms import GPTAPI
  8. from lagent.llms.huggingface import HFTransformerCasualLM
  9. class SessionState:
  10. def init_state(self):
  11. """Initialize session state variables."""
  12. st.session_state['assistant'] = []
  13. st.session_state['user'] = []
  14. #action_list = [PythonInterpreter(), GoogleSearch()]
  15. action_list = [PythonInterpreter()]
  16. st.session_state['plugin_map'] = {
  17. action.name: action
  18. for action in action_list
  19. }
  20. st.session_state['model_map'] = {}
  21. st.session_state['model_selected'] = None
  22. st.session_state['plugin_actions'] = set()
  23. def clear_state(self):
  24. """Clear the existing session state."""
  25. st.session_state['assistant'] = []
  26. st.session_state['user'] = []
  27. st.session_state['model_selected'] = None
  28. if 'chatbot' in st.session_state:
  29. st.session_state['chatbot']._session_history = []
  30. class StreamlitUI:
  31. def __init__(self, session_state: SessionState):
  32. self.init_streamlit()
  33. self.session_state = session_state
  34. def init_streamlit(self):
  35. """Initialize Streamlit's UI settings."""
  36. st.set_page_config(
  37. layout='wide',
  38. page_title='lagent-web',
  39. page_icon='./docs/imgs/lagent_icon.png')
  40. # st.header(':robot_face: :blue[Lagent] Web Demo ', divider='rainbow')
  41. st.sidebar.title('模型控制')
  42. def setup_sidebar(self):
  43. """Setup the sidebar for model and plugin selection."""
  44. model_name = st.sidebar.selectbox(
  45. '模型选择:', options=['gpt-3.5-turbo','internlm'])
  46. if model_name != st.session_state['model_selected']:
  47. model = self.init_model(model_name)
  48. self.session_state.clear_state()
  49. st.session_state['model_selected'] = model_name
  50. if 'chatbot' in st.session_state:
  51. del st.session_state['chatbot']
  52. else:
  53. model = st.session_state['model_map'][model_name]
  54. plugin_name = st.sidebar.multiselect(
  55. '插件选择',
  56. options=list(st.session_state['plugin_map'].keys()),
  57. default=[list(st.session_state['plugin_map'].keys())[0]],
  58. )
  59. plugin_action = [
  60. st.session_state['plugin_map'][name] for name in plugin_name
  61. ]
  62. if 'chatbot' in st.session_state:
  63. st.session_state['chatbot']._action_executor = ActionExecutor(
  64. actions=plugin_action)
  65. if st.sidebar.button('清空对话', key='clear'):
  66. self.session_state.clear_state()
  67. uploaded_file = st.sidebar.file_uploader(
  68. '上传文件', type=['png', 'jpg', 'jpeg', 'mp4', 'mp3', 'wav'])
  69. return model_name, model, plugin_action, uploaded_file
  70. def init_model(self, option):
  71. """Initialize the model based on the selected option."""
  72. if option not in st.session_state['model_map']:
  73. if option.startswith('gpt'):
  74. st.session_state['model_map'][option] = GPTAPI(
  75. model_type=option)
  76. else:
  77. st.session_state['model_map'][option] = HFTransformerCasualLM(
  78. '/root/model/Shanghai_AI_Laboratory/internlm-chat-7b')
  79. return st.session_state['model_map'][option]
  80. def initialize_chatbot(self, model, plugin_action):
  81. """Initialize the chatbot with the given model and plugin actions."""
  82. return ReAct(
  83. llm=model, action_executor=ActionExecutor(actions=plugin_action))
  84. def render_user(self, prompt: str):
  85. with st.chat_message('user'):
  86. st.markdown(prompt)
  87. def render_assistant(self, agent_return):
  88. with st.chat_message('assistant'):
  89. for action in agent_return.actions:
  90. if (action):
  91. self.render_action(action)
  92. st.markdown(agent_return.response)
  93. def render_action(self, action):
  94. with st.expander(action.type, expanded=True):
  95. st.markdown(
  96. "<p style='text-align: left;display:flex;'> <span style='font-size:14px;font-weight:600;width:70px;text-align-last: justify;'>插 件</span><span style='width:14px;text-align:left;display:block;'>:</span><span style='flex:1;'>" # noqa E501
  97. + action.type + '</span></p>',
  98. unsafe_allow_html=True)
  99. st.markdown(
  100. "<p style='text-align: left;display:flex;'> <span style='font-size:14px;font-weight:600;width:70px;text-align-last: justify;'>思考步骤</span><span style='width:14px;text-align:left;display:block;'>:</span><span style='flex:1;'>" # noqa E501
  101. + action.thought + '</span></p>',
  102. unsafe_allow_html=True)
  103. if (isinstance(action.args, dict) and 'text' in action.args):
  104. st.markdown(
  105. "<p style='text-align: left;display:flex;'><span style='font-size:14px;font-weight:600;width:70px;text-align-last: justify;'> 执行内容</span><span style='width:14px;text-align:left;display:block;'>:</span></p>", # noqa E501
  106. unsafe_allow_html=True)
  107. st.markdown(action.args['text'])
  108. self.render_action_results(action)
  109. def render_action_results(self, action):
  110. """Render the results of action, including text, images, videos, and
  111. audios."""
  112. if (isinstance(action.result, dict)):
  113. st.markdown(
  114. "<p style='text-align: left;display:flex;'><span style='font-size:14px;font-weight:600;width:70px;text-align-last: justify;'> 执行结果</span><span style='width:14px;text-align:left;display:block;'>:</span></p>", # noqa E501
  115. unsafe_allow_html=True)
  116. if 'text' in action.result:
  117. st.markdown(
  118. "<p style='text-align: left;'>" + action.result['text'] +
  119. '</p>',
  120. unsafe_allow_html=True)
  121. if 'image' in action.result:
  122. image_path = action.result['image']
  123. image_data = open(image_path, 'rb').read()
  124. st.image(image_data, caption='Generated Image')
  125. if 'video' in action.result:
  126. video_data = action.result['video']
  127. video_data = open(video_data, 'rb').read()
  128. st.video(video_data)
  129. if 'audio' in action.result:
  130. audio_data = action.result['audio']
  131. audio_data = open(audio_data, 'rb').read()
  132. st.audio(audio_data)
  133. def main():
  134. logger = get_logger(__name__)
  135. # Initialize Streamlit UI and setup sidebar
  136. if 'ui' not in st.session_state:
  137. session_state = SessionState()
  138. session_state.init_state()
  139. st.session_state['ui'] = StreamlitUI(session_state)
  140. else:
  141. st.set_page_config(
  142. layout='wide',
  143. page_title='lagent-web',
  144. page_icon='./docs/imgs/lagent_icon.png')
  145. # st.header(':robot_face: :blue[Lagent] Web Demo ', divider='rainbow')
  146. model_name, model, plugin_action, uploaded_file = st.session_state[
  147. 'ui'].setup_sidebar()
  148. # Initialize chatbot if it is not already initialized
  149. # or if the model has changed
  150. if 'chatbot' not in st.session_state or model != st.session_state[
  151. 'chatbot']._llm:
  152. st.session_state['chatbot'] = st.session_state[
  153. 'ui'].initialize_chatbot(model, plugin_action)
  154. for prompt, agent_return in zip(st.session_state['user'],
  155. st.session_state['assistant']):
  156. st.session_state['ui'].render_user(prompt)
  157. st.session_state['ui'].render_assistant(agent_return)
  158. # User input form at the bottom (this part will be at the bottom)
  159. # with st.form(key='my_form', clear_on_submit=True):
  160. if user_input := st.chat_input(''):
  161. st.session_state['ui'].render_user(user_input)
  162. st.session_state['user'].append(user_input)
  163. # Add file uploader to sidebar
  164. if uploaded_file:
  165. file_bytes = uploaded_file.read()
  166. file_type = uploaded_file.type
  167. if 'image' in file_type:
  168. st.image(file_bytes, caption='Uploaded Image')
  169. elif 'video' in file_type:
  170. st.video(file_bytes, caption='Uploaded Video')
  171. elif 'audio' in file_type:
  172. st.audio(file_bytes, caption='Uploaded Audio')
  173. # Save the file to a temporary location and get the path
  174. file_path = os.path.join(root_dir, uploaded_file.name)
  175. with open(file_path, 'wb') as tmpfile:
  176. tmpfile.write(file_bytes)
  177. st.write(f'File saved at: {file_path}')
  178. user_input = '我上传了一个图像,路径为: {file_path}. {user_input}'.format(
  179. file_path=file_path, user_input=user_input)
  180. agent_return = st.session_state['chatbot'].chat(user_input)
  181. st.session_state['assistant'].append(copy.deepcopy(agent_return))
  182. logger.info(agent_return.inner_steps)
  183. st.session_state['ui'].render_assistant(agent_return)
  184. if __name__ == '__main__':
  185. root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
  186. root_dir = os.path.join(root_dir, 'tmp_dir')
  187. os.makedirs(root_dir, exist_ok=True)
  188. main()

 3.4 运行Demo

因为在之前的第一个Demo中我们已经建立了SSH连接,

所以在首先再次进行一下端口的映射(打开power shell,执行下述命令,命令最后的数字需要修改为SSH实际端口数字(33090需要修改为实际的端口数字))

ssh -CNg -L 6006:127.0.0.1:6006 root@ssh.intern-ai.org.cn -p 33090

【重要】 在执行运行Demo 命令之前,需要先  pip install lagent, 不然会报错

然后直接在开发机的terminal 执行 运行Lagent 的demo 的指令就行

streamlit run /root/code/lagent/examples/react_web_demo.py --server.address 127.0.0.1 --server.port 6006

打开链接,就能看到Demo

 3.4 切换模型

网页可以顺利访问后,直接在页面点击切换模型,让后同步,开发机会进行模型下载

---------------------------------------------------------------------------------------------------------------------------------

4.浦语灵笔图文创作理解Demo

使用模型介绍:浦语灵笔(Xcomposer)

4.1 配置环境已经安装依赖包

步骤1: 检查显存占用

vgpu-smi

这一步是用于确认我们之前的进程已经都停止了,然后开始运行新的Demo

灵笔需要更高的资源配置,所以需要将之前的开发机先关掉,然后换一个更高资源的开发机

步骤1: 开启新的开发机

开启新开发机并选择合适资源

本小节我们将使用 InternStudio 中的 A100(1/4) * 2 机器和 internlm-xcomposer-7b 模型部署一个图文理解创作 Demo 。

步骤2: 配置环境和安装依赖

在终端输入 bash 命令,进入 conda 环境,接下来就是安装依赖。

进入 conda 环境之后,使用以下命令从本地克隆一个已有的pytorch 2.0.1 的环境

(1) 查看环境信息

  1. bash
  2. conda info -e

(2) 安装demo运行需要的新环境

/root/share/install_conda_env_internlm_base.sh xcomposer-demo

(3) 激活环境

conda activate xcomposer-demo

(4) 安装依赖包

接下来运行以下命令,安装 transformersgradio 等依赖包。请严格安装以下版本安装!

pip install transformers==4.33.1 timm==0.4.12 sentencepiece==0.1.99 gradio==3.44.4 markdown2==2.4.10 xlsxwriter==3.1.2 einops accelerate

4.2  模型下载

有多种方式可以进行模型的下载,这里还是推荐通过share目录来复制模型

  1. mkdir -p /root/model/Shanghai_AI_Laboratory
  2. cp -r /root/share/temp/model_repos/internlm-xcomposer-7b /root/model/Shanghai_AI_Laboratory

4.3 准备Demo代码(克隆仓库)

(1) 克隆需要的代码

在 /root/code git clone InternLM-XComposer 仓库的代码

  1. cd /root/code
  2. git clone https://gitee.com/internlm/InternLM-XComposer.git
  3. cd /root/code/InternLM-XComposer
  4. git checkout 3e8c79051a1356b9c388a6447867355c0634932d # 最好保证和教程的 commit 版本一致

这里 num_gpus 1 是因为InternStudio平台对于 A100(1/4)*2 识别仍为一张显卡。但如果有小伙伴课后使用两张 3090 来运行此 demo,仍需将 num_gpus 设置为 2 。

(2)运行执行命令

在终端运行以下代码:

  1. cd /root/code/InternLM-XComposer
  2. python examples/web_demo.py \
  3. --folder /root/model/Shanghai_AI_Laboratory/internlm-xcomposer-7b \
  4. --num_gpus 1 \
  5. --port 6006

(3)配置本地端口

查看本教程5.2配置本地端口后,将端口映射到本地。在本地浏览器输入 http://127.0.0.1:6006 即可

【重要】 这里的端口号需要修改为实际的端口号

ssh -CNg -L 6006:127.0.0.1:6006 root@ssh.intern-ai.org.cn -p 33090

(4)【重要】 补全.conda 下gradio 需要的文件

需要在https://cdn-media.huggingface.co/frpc-gradio-0.2/frpc_linux_amd64 ​​​​​​

下载文件,并将文件名改为frpc_linux_amd64_v0.2

并将文件上传到下述路径/root/.conda/envs/xcomposer-demo/lib/python3.10/site-packages/gradio

完了之后,需要给自己上传的文件权限,之后回到~/code/InternLM-XComposer 目录下,运行代码。

cd /root/.conda/envs/xcomposer-demo/lib/python3.10/site-packages/gradio chmod +x frpc_linux_amd64_v0.2

 (5) 【重要】需要修复样式问题

在web_demo.py里修改代码(最后一行),并保存

demo.launch(share=True, server_name="0.0.0.0", server_port=6006, root_path=f'/proxy/6006/')

 (5) 试玩Demo

看到下图提示就是运行成功了,但是实际打开的地址是红色这个,千万关注

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号