Git Product home page Git Product logo

flagscale's Introduction

Introduction

FlagScale is a Large Language Model (LLM) toolkit based on the Megatron-LM project, which supports the LLMs from Beijing Academy of Artificial Intelligence (BAAI). Our primary goal is to utilize the computation resources efficiently for LLMs without sacrificing the numerical stability and model effectiveness. For now, FlagScale is still in its early stage and we will work with the community together to support different LLMs on various hardware architectures.

The reason why we start from Megatron-LM is that it can achieve a very high-level resource utilization by combining the most comprehensive distributed training and accelerating techniques, especially for training LLMs beyond ten-billions of parameters.

Highlights

FlagScale provides developers with the actual configurations, optimization schemes and hyper-parameter settings for LLM training from BAAI. It also assists developers in rapidly establishing a basic yet complete pipeline for LLM, including training, fine-tuning, inference and serving. It has several features as follows:

  • Provide the training schemes of the Aquila models form BAAI which can guaranteed training convergence
  • Support the model weight conversion to Huggingface and the distributed optimizer repartition
  • Keep timely synchronization with the upstream Megatron-LM project

News and Updates

  • 2023.11.30 We release the new version (v0.2):

    • Provide the actually used training scheme for Aquila2-70B-Expr, including the parallel strategies, optimizations and hyper-parameter settings.
    • Support heterogeneous training on chips of different generations with the same architecture or compatible architectures, including NVIDIA GPUs and Iluvatar CoreX chips.
    • Support training on chinese domestic hardwares, including Iluvatar CoreX and Baidu KUNLUN chips.
  • 2023.10.11 We release the initial version (v0.1) by supporting the Aquila models, and also provide our actually used training schemes for Aquila2-7B and Aquila2-34B, including the parallel strategies, optimizations and hyper-parameter settings.

Quick Start

We highly recommend developers to follow the Megatron-LM Usage. Here we provide instructions for Aquila LLMs:

Setup

  1. Install the Megatron-LM dependencies as the original link

  2. Install the requirements for FlagScale

git clone [email protected]:baai-opensp/FlagScale.git 
cd FlagScale
pip install -r requirements.txt

Pretrain the Aquila model

  1. Change to the aquila directory
cd FlagScale/examples/aquila
  1. Start a distributed training job
bash dist_start.sh

Before running dist_start.sh, you should provide the required information:

  • FlagScale_HOME: the directory of the FlagScale.
  • PROJ_HOME: the directory for saving checkpoints, tensorboards and other information.
  • EXPNAME: the name of the current training experiment.
  • DATA_PATH: the path of the training datasets following the Megatron-LM format. For quickly running the pretraining process, we also provide a small processed data (bin and idx) from the Pile dataset.
  • HOSTFILE: the hostfile of the nodes for the current training, which consists of a list of hostnames and slot counts. For example:
    hostnames-1/IP-1 slots=8
    hostnames-2/IP-2 slots=8
    
    These hostnames or IPs represent machines accessible via passwordless SSH and the slots specify the number of GPUs available on that machine.
  • SCRIPT_FILE: the actually used training script of the current job where you can change the specific configurations as needed. For example, you should change --train-samples to match the small demo dataset we provided above.
  1. Stop a distributed training job
bash dist_stop.sh

Before running dist_stop.sh, you should provide the required information:

  • HOSTFILE: the hostfile of the nodes for the current training.

Do the heterogenous training

It is very simple to do the heterogeneous training on chips of different generations with the same architecture or compatible architectures. You only need to follow the steps below and everything else just remains the same as the above homogeneous training. In addition, you can also refer to the examples 1, 2, 3 for better understanding.

  1. Extend the hostfile

    Before doing the heterogenous training, you should extend the hostfile by adding the device types. You are free to choose the identifier strings for these device types, but please ensure they are not duplicated.

    hostnames-1/IP-1 slots=8 typeA
    hostnames-2/IP-2 slots=8 typeB
    
  2. Add the heterogeneous configuration

    • If you choose the heterogenous pipeline parallelism mode, please set the following configurations:

      • hetero-mode: specify the heterogenous training mode pp.
      • hetero-current-device-type: specify the device type of the current node.
      • hetero-device-types: specify all the device types used in this training.
      • hetero-pipeline-stages: specify the stage splitting configuration. For example, given 2 4 4 3 5 5 5, the total pipeline parallel size is 2 + 3 = 5, the total number of the model layers is 4 + 4 + 5 + 5 + 5 = 23, the pipeline parallel size for the first device type in the hetero-device-types list is 2 and the pipeline parallel size for the second device type in the hetero-device-types is list 3.
    • If you choose the heterogenous data parallelism mode, please set the following configurations:

      • hetero-mode: specify the heterogenous training mode dp.
      • hetero-current-device-type: specify the device type of the current node.
      • hetero-device-types: specify all the device types used in this training.
      • hetero-micro-batch-sizes: specify the micro batch size splitting configuration. For example, given 2 1 3 2, the total data parallel size is 2 + 3 = 5 and the micro batch size for each training iteration is 2 * 1 + 3 * 2 = 8, the data parallel size for the first device type in the hetero-device-types list is 2 and the data parallel size for the second device type in the hetero-device-types is 3 list.
      • Remove the micro-batch-size configuration because hetero-micro-batch-sizes works as the same purpose.

From FlagScale to HuggingFace

  1. Change to the FlagScale directory
cd FlagScale/megatron 
  1. Merge the multiple checkpoints to a single checkpoint (if needed)
python tools/checkpoint_util.py --model-type GPT \
        --load-dir ${LOAD_DIR} --save-dir ${SAVE_DIR} \
        --true-vocab-size 100008 --vocab-file ${FlagScale_HOME}/examples/aquila/tokenizer/vocab.json \
        --megatron-path ${FlagScale_HOME} --target-tensor-parallel-size 1 --target-pipeline-parallel-size 1

Please set the following variables before running the command:

  • LOAD_DIR: the directory for loading the original checkpoint.
  • SAVE_DIR: the directory for saving the merged checkpoint.
  • FlagScale_HOME: the directory of FlagScale.
  1. Convert the merged checkpoint to the Huggingface format
export PYTHONPATH=${FlagScale_HOME}:$PYTHONPATH

python scripts/convert_megatron_unsharded_to_huggingface.py \
        --input-dir ${SAVE_DIR}/iter_${ITERATION}/mp_rank_00/ \
        --output-dir ${SAVE_DIR}/iter_${ITERATION}_hf \
        --num-layers 60 --hidden-size 6144 \
        --num-attention-heads 48 --group-query-attention --num-query-groups 8 \
        --data-type bf16 --multiple-of 4096 --hidden-dim-multiplier 1.3

Please set the following variables before running the command:

  • FlagScale_HOME: the directory of FlagScale.
  • SAVE_DIR: the directory for loading the merged checkpoint.
  • ITERATION: the iteration number from latest_checkpointed_iteration.txt in SAVE_DIR and need to be padded zeros to 7 digits.

Note that the above configuration is for converting Aquila-34B and you may need to change the model configurations such as num_layers andhidden_size as needed.

Serve a model

  1. Change to the FlagScale directory
cd FlagScale/megatron
  1. Merge the multiple checkpoints to a single checkpoint (as needed)
python tools/checkpoint_util.py --model-type GPT \
        --load-dir ${LOAD_DIR} --save-dir ${SAVE_DIR} \
        --true-vocab-size 100008 --vocab-file ${FlagScale_HOME}/examples/aquila/tokenizer/vocab.json \
        --megatron-path ${FlagScale_HOME} --target-tensor-parallel-size 1 --target-pipeline-parallel-size 1

Please set the following variables before running the command:

  • LOAD_DIR: the directory for loading the original checkpoint.
  • SAVE_DIR: the directory for saving the merged checkpoint.
  • FlagScale_HOME: the directory of FlagScale.
  1. Serve the Aquila2 model by the below script. Here we take the Aquila2-34B as an example and assume you have an A800-80G GPU.
python ../examples/aquila/34B/inference_auto.py \
       --server-port ${SERVER_PORT} --master-process ${MASTER_PORT} \
       --device "0" --iteration -1 --checkpoint-path "${CKPT_DIR}" \
       --model-info "Aquila-34b"

Please set the following variables before running the command:

  • SERVER_PORT: the server port for serving the model.
  • MASTER_PORT: the port of the master process.
  • CKPT_DIR: the directory for loading the merged checkpoint.
  1. After you have served an Aquila model successfully, you can send a request to do the testing.
python tools/test/test_api_flask.py

Repartition the distributed optimizer [optional]

When using the distributed optimizer, you can use the following tool to repartition the distributed optimizer if the parallel schemes is changed during the training.

  1. Change to the FlagScale directory
cd FlagScale/megatron
  1. Repartition the model weight
python tools/checkpoint_util_lite.py --conversion-type weight --model-type GPT --load-dir ${LOAD_DIR} --save-dir ${SAVE_DIR} \ 
    --true-vocab-size 100008 --vocab-file ${FlagScale_HOME}/examples/aquila/tokenizer/vocab.json --megatron-path  ${FlagScale_HOME} \
    --target-tensor-parallel-size ${TP} --target-pipeline-parallel-size ${PP} 

Please set the following variables before running the command:

  • LOAD_DIR: the directory for loading the original checkpoint.
  • SAVE_DIR: the directory for saving the converted checkpoint.
  • FlagScale_HOME: the directory of FlagScale.
  • TP: the target tensor parallel size.
  • PP: the target pipeline parallel size.
  1. Repartition the distributed optimizer
python tools/checkpoint_util_lite.py --conversion-type optimizer --model-type GPT --load-dir ${LOAD_DIR} --save-dir ${SAVE_DIR} \ 
    --true-vocab-size 100008 --vocab-file ${FlagScale_HOME}/examples/aquila/tokenizer/vocab.json --megatron-path  ${FlagScale_HOME} \
    --target-tensor-parallel-size ${TP} --target-pipeline-parallel-size ${PP} 

Please set the following variables before running the command as these used in the model weight conversion:

  • LOAD_DIR: the directory for loading the original checkpoint.
  • SAVE_DIR: the directory for saving the converted checkpoint.
  • FlagScale_HOME: the directory of FlagScale.
  • TP: the target tensor parallel size.
  • PP: the target pipeline parallel size.

Future work

We will work with the community together on the following items:

  • Release the actual used training schemes for more models from BAAI
  • Add customized optimizations and integrate techniques from other excellent open-source projects like DeepSpeed and vLLM etc.
  • Support LLMs with different model structures
  • Support the model training with more hardware architectures

License

This project is mainly based on the Megatron-LM project and is licensed under the Apache License (Version 2.0). This project also contains other third-party components under other open-source licenses. See the LICENSE file for more information.

flagscale's People

Contributors

jaredcasper avatar lmcafee-nvidia avatar kantneel avatar kvareddy avatar mpatwary avatar zliucr avatar deepakn94 avatar ericharper avatar aoyulong avatar maanug-nv avatar jon-barker avatar ksivaman avatar sudhakarsingh27 avatar borisfom avatar erhoo82 avatar blahblahhhj avatar ekmb avatar aklife97 avatar maximumentropy avatar pxuab avatar mikolajblaz avatar jiemingz avatar wdykas avatar satpalsr avatar timmoon10 avatar hyunwoongko avatar janebert avatar zlkanyo009 avatar raulpuric avatar stas00 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.