部署chatglm3


MacBook部署chatglm3-6b

下载代码

git clone https://github.com/THUDM/ChatGLM3
cd ChatGLM3
pip install -r requirements.txt

本地加载模型

Huggingface 国内网络问题推荐使用镜像站:hf-mirror 支持断点续传

demo

MacBook M1 Pro 16g 部署

from transformers import AutoTokenizer, AutoModel

# 本地模型
model_directory = "模型地址路径(推荐绝对路径)"
#model_directory = "THUDM/chatglm3-6b"

tokenizer = AutoTokenizer.from_pretrained(model_directory, trust_remote_code=True)
model = AutoModel.from_pretrained(model_directory, trust_remote_code=True).half().to('mps')
model = model.eval()

response, history = model.chat(tokenizer, "你好", history=[])
print(response)

image-20231227150509116

速度感人,20分钟才出结果。电脑配置不行放弃治疗。。。

mac优化:

将/ChatGLM3/composite_demo/client.py
中的第140行左右
中的
device_map = “auto”
改为
device_map = “mps”

环境变量:

export MODEL_PATH=本地模型路径。指定从本地加载模型

Jupyter 内核,可以通过 export IPYKERNEL=<kernel_name> 来指定。


文章作者: ghf
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 ghf !
评论
 上一篇
BurpSuite破解 BurpSuite破解
BurpSuite 破解最近系统暴露了毕竟多的安全问题,有必要在安全方法补补课,搞个BurpSuite先学习下。 安装官网Mac版Burp。https://portswigger.net/burp/releases 准备破解的java
2024-04-07
下一篇 
安装配置conda 安装配置conda
安装配置conda环境关于condaconda是一个配置隔离python环境的工具 因为有些时候我们需要不同版本的python或不同版本的pip模块(比如你需要跑两个从github上下下来的代码,他们的tensorflow版本一个要求1.
2023-12-27