当前位置:   article > 正文

mac pro 安装ChatGLM2-6B_chatglm2-6b下载

chatglm2-6b下载

一、下载本地仓库
  1. git clone https://github.com/THUDM/ChatGLM2-6B
  2. cd ChatGLM2-6B

二、安装pip

  1. curl https://bootstrap.pypa.io/get-pip.py | python3
  2. #查看版本
  3. pip3 --version
  4. #查看python3安装包列表
  5. pip3 list

参考:http://www.manongjc.com/detail/62-zuwklvrkupvaytn.html

三、安装依赖
  1. pip3 install -r requirements.txt
  2. pip3 install protobuf transformers==4.30.2 cpm_kernels torch>=2.0 gradio mdtex2html sentencepiece accelerate
四、从本地加载模型
  1. brew install git-lfs
  2. git lfs install
  3. python3 -m pip install urllib3==1.26.6
  4. #如果你从 Hugging Face Hub 上下载 checkpoint 的速度较慢,可以只下载模型实现
  5. GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/THUDM/chatglm2-6b

然后从这里手动下载模型参数文件

并将下载文件放到mac目录:/Users/用户名/apps/model/chatglm2-6b-int4。

如果对比tokenizer.model 文件跟Git上的大小,如果大小不一致,需要从git上下载过来。

参考:python 问题修复ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+_liwenchao1995的博客-CSDN博客

五、网页版demo

打开Users/用户名/apps/ChatGLM2-6B/web_demo.py.修改代码

  1. ## 添加进去就行,控制内存池的高水位线比率,不然执行GLM后一段时间会因为内存占用过高报错
  2. import os
  3. os.environ['PYTORCH_MPS_HIGH_WATERMARK_RATIO'] = '0.0'
  4. tokenizer = AutoTokenizer.from_pretrained("/Users/yanhongzhang/apps/model/chatglm2-6b-int4", trust_remote_code=True)
  5. model = AutoModel.from_pretrained("/Users/yanhongzhang/apps/model/chatglm2-6b-int4", trust_remote_code=True).float()
  6. #修改后,开启共享
  7. demo.queue().launch(share=True, inbrowser=True)

  1. pip3 install gradio
  2. pip3 list
  3. pip3 install torch torchvision torchaudio
  4. python3 web_demo.py

六、API部署

  1. pip install fastapi uvicorn
  2. python api.py
  3. curl -X POST "http://127.0.0.1:8000" \
  4. -H 'Content-Type: application/json' \
  5. -d '{"prompt": "你好", "history": []}'
七:相关参考

https://zhuanlan.zhihu.com/p/636711594

https://xie.infoq.cn/article/f71813ca7b3cedd231600453a

https://www.bilibili.com/read/cv22604870

https://github.com/THUDM/ChatGLM2-6B


https://www.dianjilingqu.com/761793.html

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

闽ICP备14008679号