当前位置:   article > 正文

CPU也能运行ChatGLM_chatglm cpu

chatglm cpu

CPU上也能跑ChatGLM

随着ChatGPT的问世,各种GPT如雨后春笋般出现,对于NLPer来说,最想要的肯定是拥有一套属于自己的开源的版本了。这里开源包含代码和模型哈。
目前看下来,对中文比较友好的就是清华大学出品的ChatGLM了,然而又有小伙伴踌躇不定了,我没有GPU怎么办,这里没有GPU也可以哦(仅限推理哈^ _ ^)
话不多说,直接上干货,ChatGLM 你值得拥有!

环境准备

官方Github地址:https://github.com/THUDM/ChatGLM-6B

对于有GPU的方法这里不再赘述,直接按ReadMe做即可,全程无障碍。
对于只有CPU的小伙伴来说,重点来了:

  1. 下载代码库
git clone https://github.com/THUDM/ChatGLM-6B.git
  • 1
  1. pip安装
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
  • 1
  1. 下载ChatGLM模型
    当然也可以用在线的Haggingface的模型,但加载较慢,个人建议用离线下载方式。
  1. 安装 GCC 和 OpenMP
    在 CPU 上运行时,会根据硬件自动编译 CPU Kernel ,确保已安装 GCC 和 OpenMP (Linux一般已安装,对于Windows则需手动安装),以获得最佳并行计算能力。

运行ChatGLM

运行以下Python代码即可拥有属于你自己的ChatGLM了

from transformers import AutoTokenizer, AutoModel

# 这里使用绝对路径,否则会走弯路的
tokenizer = AutoTokenizer.from_pretrained("C:\\Users\\xxx\\chatglm-6b-int4", trust_remote_code=True)
model = AutoModel.from_pretrained("C:\\Users\\xxx\\chatglm-6b-int4",trust_remote_code=True).float()
model = model.eval()
input = "你好"
response, history = model.chat(tokenizer, input, history=[])
print(response)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

没错,这么几行代码就可以。

有问题欢迎留言…

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/189607
推荐阅读
相关标签
  

闽ICP备14008679号