Edit model card

XVERSE-65B-Chat-GGUF

更新信息

  • [2024/03/25] 发布XVERSE-65B-Chat-GGUF模型,支持llama.cpp在MacOS/Linux/Windows系统上推理XVERSE-65B-Chat模型。
  • [2023/12/08] 发布 XVERSE-65B-2 底座模型,该模型在前一版本的基础上进行了 Continual Pre-Training,训练总 token 量达到 3.2 万亿;模型各方面的能力均得到提升,尤其是数学和代码能力,在 GSM8K 上提升 20%,HumanEval 上提升 41%。
  • [2023/11/29] 更新模型架构及更多底座数据的相关信息。
  • [2023/11/24] 更新预训练数据的相关信息。
  • [2023/11/06] 发布 65B 尺寸的 XVERSE-65B 底座模型。

Update Information

  • [2024/03/25] Released the XVERSE-65B-Chat GGUF models, supporting llama.cpp to inference the XVERSE-65B-Chat model on MacOS/Linux/Windows systems.
  • [2023/12/08] Released the XVERSE-65B-2 base model. This model builds upon its predecessor through Continual Pre-Training, reaching a total training volume of 3.2 trillion tokens. It exhibits enhancements in all capabilities, particularly in mathematics and coding skills, with a 20% improvement on the GSM8K benchmark and a 41% increase on HumanEval.
  • [2023/11/29] Update model architecture and additional pre-training data information.
  • [2023/11/24] Update the related information of the pre-training data.
  • [2023/11/06] Released the XVERSE-65B base model.

模型介绍

XVERSE-65B 是由深圳元象科技自主研发的支持多语言的大语言模型(Large Language Model),参数规模为 650 亿,本次开源的模型为底座模型 XVERSE-65B,主要特点如下:

  • 模型结构:XVERSE-65B 使用主流 Decoder-only 的标准 Transformer 网络结构,支持 16K 的上下文长度(Context Length),能满足更长的多轮对话、知识问答与摘要等需求,模型应用场景更广泛。
  • 训练数据:构建了 2.6 万亿 token 的高质量、多样化的数据对模型进行充分训练,包含中、英、俄、西等 40 多种语言,通过精细化设置不同类型数据的采样比例,使得中英两种语言表现优异,也能兼顾其他语言效果。
  • 分词:基于 BPE(Byte-Pair Encoding)算法,使用上百 GB 语料训练了一个词表大小为 100,534 的分词器,能够同时支持多语言,而无需额外扩展词表。
  • 训练框架:训练中采用 FlashAttention2 加速计算,3D 并行基础上采用虚拟流水线(virtual pipeline)技术,降低较长流水线和 16k 上下文窗口产生的过高气泡率,在千卡集群的峰值算力利用率达到业界前列。同时通过集群基础设施运营、资源调度、训练框架和调度平台协同等持续优化,打造出高稳定、低中断、强容错的训练系统,将每周有效训练率提升至 98.6%。

XVERSE-65B的模型大小、架构和学习率如下:

params d_model n_heads n_layers d_ff learning rate
65B 8192 64 80 22016 1.5e−4

Model Introduction

XVERSE-65B is a multilingual large language model, independently developed by Shenzhen Yuanxiang Technology. The models released this time is the base model XVERSE-65B. Its key features are as follows:

  • Model Structure: XVERSE-65B uses the mainstream Decoder-only Transformer network structure, supports 16k context length, which can meet the need of longer multi-round dialogues, knowledge question-answering, and summarization. This makes the model more versatile in application scenarios.
  • Training Data: The model has been thoroughly trained on a diversified and high-quality dataset consisting of 2.6 trillion of tokens, including more than 40 languages such as Chinese, English, Russian, and Spanish. The sampling ratio of different types of data is finely set, which makes the performance of Chinese and English excellent, and also takes into account the effect of other languages.
  • Tokenization: Based on the BPE (Byte-Pair Encoding) algorithm, a tokenizer with a vocabulary size of 100,534 has been trained using hundreds of gigabytes of language data. This tokenizer is capable of supporting multilingual without the need for additional vocabulary expansion.
  • Training Framework: The training utilizes FlashAttention2 for accelerated computation, and on top of 3D parallelism, virtual pipeline technology is applied to reduce the excessive bubble rate caused by longer pipelines and 16k context windows. This achieves a peak computational efficiency within the industry-leading range in the petaflop-scale cluster. Concurrently, through continuous optimization of cluster infrastructure operations, resource scheduling, training frameworks, and the scheduling platform, a highly stable, low-interruption, and robust fault-tolerant training system has been developed, enhancing the effective weekly training rate to 98.6%.

The models sizes, architectures and learning rate of XVERSE-65B are showed as follows:

params d_model n_heads n_layers d_ff learning rate
65B 8192 64 80 22016 1.5e−4

环境准备

我们建议您克隆llama.cpp并按照官方指南进行安装。

Environment Setup

We advise you to clone llama.cpp and install it following the official guide.

使用方法

直接clone仓库可能不太高效,因此您可以手动下载所需的GGUF文件或使用huggingface clipip install huggingface_hub),如下所示:

huggingface-cli download xverse/XVERSE-65B-Chat-GGUF xverse-65b-chat-q2_k.gguf --local-dir . --local-dir-use-symlinks False

对于 q5_k_m 模型,由于上传的文件大小超出最大文件限制,因此我们将GGUF文件切分为2个。本质上,我们将一个字节字符串拆分为2个,因此您可以将它们连接起来以获得整个文件:

cat xverse-65b-chat-q5_0.gguf.* > xverse-65b-chat-q5_0.gguf

我们演示了如何使用 llama.cpp 来运行xverse-65b-chat-q5_0.gguf:

./main -m xverse-65b-chat-q5_0.gguf -n 512 --color -i --temp 0.85 --top_k 30 --top_p 0.85 --repeat_penalty 1.1 -ins  # -ngl 99 for GPU

Usage

Cloning the repo may be inefficient, and thus you can manually download the GGUF file that you need or use huggingface-cli (pip install huggingface_hub) as shown below:

huggingface-cli download xverse/XVERSE-65B-Chat-GGUF xverse-65b-chat-q2_k.gguf --local-dir . --local-dir-use-symlinks False

For the q5_k_m model, due to maximum file size for uploading, we split the GGUF file into 2. Essentially, we split a byte string to 2, and thus you can just concatenate them to get the whole file:

cat xverse-65b-chat-q5_0.gguf.* > xverse-65b-chat-q5_0.gguf

We demonstrate how to use llama.cpp to run xverse-65b-chat-q5_0.gguf:

./main -m xverse-65b-chat-q5_0.gguf -n 512 --color -i --temp 0.85 --top_k 30 --top_p 0.85 --repeat_penalty 1.1 -ins  # -ngl 99 for GPU

局限性与免责申明

XVERSE-65B 与其他所有 LLM 一样,在某些情况下可能会产生不准确、有偏见或其他令人反感的内容。因此,请谨慎使用模型生成的内容,请勿将生成的有害内容进行传播,在部署任何 XVERSE-65B 的应用之前,开发人员应根据其具体应用对模型进行安全测试和调优。

我们强烈警告不要将 XVERSE-65B 模型用于制造或传播有害信息,或进行任何可能损害公众、国家、社会安全或违反法规的活动。如果使用 XVERSE-65B 模型产生任何问题,无论是数据安全问题、公共舆论风险,还是模型被误解、滥用、传播或不合规使用所引发的任何风险和问题,我们将不承担任何责任。

Limitations and Disclaimer

Like all other Large Language Models (LLMs), XVERSE-65B may produce inaccurate, biased, or otherwise offensive content under certain circumstances. Therefore, please use the content generated by the model with caution and refrain from disseminating harmful content. Before deploying any application of XVERSE-65B, developers should conduct safety tests and optimization of the model according to its specific application.

We strongly warn against the use of the XVERSE-65B model for producing or spreading harmful information, or conducting any activities that might harm the public, national, or social security, or violate regulations. We assume no responsibility for any problems arising from the use of the XVERSE-65B model, whether it be data security issues, public opinion risks, or any risks and issues caused by misunderstanding, misuse, dissemination, or non-compliance with the model.

模型开源协议

使用本仓库的源码需要遵循 Apache-2.0 开源协议,使用 XVERSE-65B 的模型权重则需要遵循模型许可协议

XVERSE-65B 模型权重对学术研究完全开放,并且支持免费商用。如需申请商业许可证,请填写【申请表】,如有其他问题或合作,请联系 opensource@xverse.cn

Open Source License

The use of the source code in this repository must follow the Apache-2.0 open-source license, while the use of the model weights of XVERSE-65B needs to adhere to the Model License Agreement.

The XVERSE-65B model weights are fully open to academic research and support free commercial use. To apply for a commercial license, please fill in the application form. For other questions or collaborations, please contact opensource@xverse.cn.

Downloads last month
18
GGUF
Model size
66.4B params
Architecture
xverse
Inference API (serverless) has been turned off for this model.

Collection including xverse/XVERSE-65B-Chat-GGUF