Instructions to use KexuanShi/Megatron-LM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use KexuanShi/Megatron-LM with NeMo:
# tag did not correspond to a valid NeMo domain.
- Notebooks
- Google Colab
- Kaggle
| SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" | |
| # Common arguments and base model specific arguments | |
| source "${SCRIPT_DIR}/conf/arguments.sh" | |
| # Default arguments of this script | |
| MLM_DEFAULT_ARGS="--finetune --auto-detect-ckpt-format --export-te-mcore-model --use-cpu-initialization" | |
| if [ -z ${HF_MODEL_CKPT} ]; then | |
| HF_MODEL_CKPT=${1} | |
| fi | |
| if [ -z ${HF_TOKEN} ]; then | |
| printf "${MLM_WARNING} Variable ${PURPLE}HF_TOKEN${WHITE} is not set! Pretrained config download may fail!\n" | |
| fi | |
| if [ -z ${EXPORT_DIR} ]; then | |
| EXPORT_DIR=${MLM_WORK_DIR}/${MLM_MODEL_CFG}_export | |
| printf "${MLM_WARNING} Variable ${PURPLE}EXPORT_DIR${WHITE} is not set (default: ${EXPORT_DIR})!\n" | |
| fi | |
| if [ "${TP}" != "1" ]; then | |
| TP=1 | |
| printf "${MLM_WARNING} Variable ${PURPLE}TP${WHITE} is forced to be 1 during export!!\n" | |
| fi | |
| ${LAUNCH_SCRIPT} ${SCRIPT_DIR}/export.py \ | |
| ${MODEL_ARGS} \ | |
| --tensor-model-parallel-size ${TP} \ | |
| --pipeline-model-parallel-size ${PP} \ | |
| --tokenizer-model ${TOKENIZER_MODEL} \ | |
| --load ${MLM_MODEL_CKPT} \ | |
| --pretrained-model-name ${HF_MODEL_CKPT} \ | |
| --export-dir ${EXPORT_DIR} \ | |
| ${MLM_DEFAULT_ARGS} ${MLM_EXTRA_ARGS} | |