【大模型】通义千问safetensors

03-03 1153阅读 0评论

【大模型】通义千问safetensors_rust.SafetensorError: Error while deserializing header: HeaderTooLarge解决方法

  • 通义千问介绍
  • Requirements
  • 模型下载
  • 模型推理
  • 解决方法
  • 解决方法2

    通义千问介绍

    GitHub:https://github.com/QwenLM/Qwen

    【大模型】通义千问safetensors,【大模型】通义千问safetensors,词库加载错误:未能找到文件“C:\Users\Administrator\Desktop\火车头9.8破解版\Configuration\Dict_Stopwords.txt”。,使用,安装,下载,第1张
    (图片来源网络,侵删)

    Requirements

    • python 3.8及以上版本
    • pytorch 1.12及以上版本,推荐2.0及以上版本
    • 建议使用CUDA 11.4及以上(GPU用户、flash-attention用户等需考虑此选项)

      模型下载

      git clone https://www.modelscope.cn/qwen/Qwen-7B-Chat.git
      

      模型推理

      infer_qwen.py:

      from modelscope import AutoModelForCausalLM, AutoTokenizer
      from modelscope import GenerationConfig
      # Note: The default behavior now has injection attack prevention off.
      tokenizer = AutoTokenizer.from_pretrained("qwen/Qwen-7B-Chat", trust_remote_code=True)
      # use bf16
      # model = AutoModelForCausalLM.from_pretrained("qwen/Qwen-7B-Chat", device_map="auto", trust_remote_code=True, bf16=True).eval()
      # use fp16
      # model = AutoModelForCausalLM.from_pretrained("qwen/Qwen-7B-Chat", device_map="auto", trust_remote_code=True, fp16=True).eval()
      # use cpu only
      # model = AutoModelForCausalLM.from_pretrained("qwen/Qwen-7B-Chat", device_map="cpu", trust_remote_code=True).eval()
      # use auto mode, automatically select precision based on the device.
      model = AutoModelForCausalLM.from_pretrained("qwen/Qwen-7B-Chat", device_map="auto", trust_remote_code=True).eval()
      # Specify hyperparameters for generation. But if you use transformers>=4.32.0, there is no need to do this.
      # model.generation_config = GenerationConfig.from_pretrained("Qwen/Qwen-7B-Chat", trust_remote_code=True) # 可指定不同的生成长度、top_p等相关超参
      # 第一轮对话 1st dialogue turn
      response, history = model.chat(tokenizer, "你好", history=None)
      print(response)
      # 第二轮对话 2nd dialogue turn
      response, history = model.chat(tokenizer, "给我讲一个年轻人奋斗创业最终取得成功的故事。", history=history)
      print(response)
      # 第三轮对话 3rd dialogue turn
      response, history = model.chat(tokenizer, "给这个故事起一个标题", history=history)
      print(response)
      

      执行推理时报错如下:

      root:/workspace/tmp/LLM# python infer_qwen.py
      2023-12-16 01:35:43,760 - modelscope - INFO - PyTorch version 2.0.1 Found.
      2023-12-16 01:35:43,762 - modelscope - INFO - TensorFlow version 2.10.0 Found.
      2023-12-16 01:35:43,762 - modelscope - INFO - Loading ast index from /root/.cache/modelscope/ast_indexer
      2023-12-16 01:35:43,883 - modelscope - INFO - Loading done! Current index file version is 1.9.1, with md5 5f21e812815a5fbb6ced75f40587fe94 and a total number of 924 components indexed
      The model is automatically converting to bf16 for faster inference. If you want to disable the automatic precision, please manually add bf16/fp16/fp32=True to "AutoModelForCausalLM.from_pretrained".
      Try importing flash-attention for faster inference...
      Warning: import flash_attn rotary fail, please install FlashAttention rotary to get higher efficiency https://github.com/Dao-AILab/flash-attention/tree/main/csrc/rotary
      Warning: import flash_attn rms_norm fail, please install FlashAttention layer_norm to get higher efficiency https://github.com/Dao-AILab/flash-attention/tree/main/csrc/layer_norm
      Warning: import flash_attn fail, please install FlashAttention to get higher efficiency https://github.com/Dao-AILab/flash-attention
      Loading checkpoint shards:   0%|          | 0/8 [00:00

免责声明
本网站所收集的部分公开资料来源于AI生成和互联网,转载的目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。
文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

发表评论

快捷回复: 表情:
评论列表 (暂无评论,1153人围观)

还没有评论,来说两句吧...

目录[+]