Skip to content
大纲

环境配置

shell
# 创建环境
conda create -n demo python=3.10 -y
# 激活环境
conda activate demo
# 安装 torch
conda install pytorch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 pytorch-cuda=12.1 -c pytorch -c nvidia -y
# 安装其他依赖
pip install transformers==4.38
pip install sentencepiece==0.1.99
pip install einops==0.8.0
pip install protobuf==5.27.2
pip install accelerate==0.33.0
pip install streamlit==1.37.0

部署模型

创建目录modeldemo用于存放模型部署调用测试demo

shell
mkdir -p /root/demo
touch /root/modeldemo/cli_demo.py

cli_demo代码:

python
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM


model_name_or_path = "/root/share/new_models/Shanghai_AI_Laboratory/internlm2-chat-1_8b"

tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, trust_remote_code=True, device_map='cuda:0')
model = AutoModelForCausalLM.from_pretrained(model_name_or_path, trust_remote_code=True, torch_dtype=torch.bfloat16, device_map='cuda:0')
model = model.eval()

system_prompt = """You are an AI assistant whose name is InternLM (书生·浦语).
- InternLM (书生·浦语) is a conversational language model that is developed by Shanghai AI Laboratory (上海人工智能实验室). It is designed to be helpful, honest, and harmless.
- InternLM (书生·浦语) can understand and communicate fluently in the language chosen by the user such as English and 中文.
"""

messages = [(system_prompt, '')]

print("=============Welcome to InternLM chatbot, type 'exit' to exit.=============")

while True:
    input_text = input("\nUser  >>> ")
    input_text = input_text.replace(' ', '')
    if input_text == "exit":
        break

    length = 0
    for response, _ in model.stream_chat(tokenizer, input_text, messages):
        if response is not None:
            print(response[length:], flush=True, end="")
            length = len(response)

运行结果:

image-20240921220940977

Streamlit Web Demo

仅仅使用上述方式只能在终端中使用shell命令进行交互,下面使用streamlit的web界面来提升交互效果。

克隆官方教程书生浦语大模型实战并启动服务

shell
cd /root/modeldemo
git clone https://github.com/InternLM/Tutorial.git

# 启动
cd /root/demo
streamlit run /root/modeldemo/Tutorial/tools/streamlit_demo.py --server.address 127.0.0.1 --server.port 6006

image-20240921221406958

image-20240921221523398

出现问题

image-20240921221846424

报错信息表明是transformers库版本不一致,由于先完成的提示词工程任务,版本存在差别,相同库没有做升级导致。

最终效果

image-20240921222802489

贡献者

凌晨三点的修狗