Library for industrial alignment.
- What is Turbo-Alignment?
- Key Features
- Supported Methods
- Implemented metrics
- How to Use
- Installation
- Development
- Library Roadmap
- FAQ
- License
Turbo-Alignment is a library designed to streamline the fine-tuning and alignment of large language models, leveraging advanced techniques to enhance efficiency and scalability.
- 📊 Comprehensive Metrics and Logging: Includes a wide range of metrics such as self-bleu, KL divergence, diversity, etc. all supported out of the box.
- 🛠️ Streamlined Method Deployment: Simplifies the process of deploying new methods, allowing for quick development and integration of new datasets and trainers into your pipelines.
- 📚 Ready-to-Use Examples: Convenient examples with configurations and instructions for basic tasks.
- ⚡ Fast Inference: Optimized for quick inference using vLLM.
- 🔄 End-to-End Pipelines: From data preprocessing to model alignment.
- 🌐 Multimodal Capabilities: Extensive support for various multimodal functions like Vision Language Modeling.
- 🔍 RAG Pipeline: Unique pipeline for end2end retrieval-augmented generation training.
Turbo-Alignment supports a wide range of methods for model training and alignment, including:
- 🎯 Supervised Fine-Tuning (SFT)
- 🏆 Reward Modeling (RM)
- 👍 Direct Preference Optimization (DPO)
- 🧠 Kahneman & Tversky Optimization (KTO) Paired/Unpaired
- 🔄 Contrastive Preference Optimization (CPO)
- 🎭 Identity Preference Optimisation (IPO)
- 🌟 Sequence Likelihood Calibration with Human Feedback (SLiC-HF)
- 📊 Statistical Rejection Sampling Optimization (RSO)
- 🌁 Vision Language Modeling using MLP from (LLaVA) or C-Abstractor from (HoneyBee) trainable projection model
- 🗂️ Retrieval-Augmented Generation (RAG)
- 🔠 Distinctness
- 🌈 Diversity
- 🔵 Self-BLEU
- ➗ KL-divergence
- 🏆 Reward
- 📏 Length
- 🌀 Perplexity
- 🌟 METEOR
- 🔍 Retrieval Utility
Turbo-Alignment offers an intuitive interface for training and aligning large language models. Refer to the detailed examples and configuration files in the documentation to get started quickly with your specific use case. User-friendly guid available here.
The most crucial aspect is to prepare the dataset in the required format, after which the pipeline will handle everything automatically. Examples of datasets are available here.
- 📚 Dataset type prepare your dataset in the
ChatDataset
, examples available here format. - 📝 Configs Example: sft.json
- 🖥️ CLI launch command
python -m turbo_alignment train_sft --experiment_settings_path tutorials/sft/sft.json
- 📚 Dataset type prepare your dataset in the
PairPreferencesDataset
format, examples available here - 📝 Configs Example: rm.json
- 🖥️ CLI launch command
python -m turbo_alignment train_rm --experiment_settings_path tutorials/rm/rm.json
- 📚 Dataset type prepare your dataset in the
PairPreferencesDataset
format, examples available here - 📝 Configs Example: dpo.json
- 🖥️ CLI launch command
python -m turbo_alignment train_dpo --experiment_settings_path tutorials/dpo/dpo.json
- 📚 Dataset type prepare your dataset in the
KTODataset
format, examples available here - 📝 Configs Examples: kto.json
- 🖥️ CLI launch command
python -m turbo_alignment train_kto --experiment_settings_path tutorials/kto/kto.json
⌛️ in progress..
- 📚 Dataset type: prepare your dataset in
ChatDataset
, examples available here format. - 📝 Configs Example: sft_retrieval_utility.json
- 🖥️ CLI launch command:
python -m turbo_alignment train_sft --experiment_settings_path tests/fixtures/configs/train/sft/sft_retrieval_utility.json
- 📚 Dataset type: prepare your dataset in
ChatDataset
, examples available here format. - 📝 Configs Example: end2end.json
- 🖥️ CLI launch command:
python -m turbo_alignment train_rag --experiment_settings_path tests/fixtures/configs/train/rag/end2end.json
- 📚 Dataset type prepare your dataset in the
ChatDataset
, examples available here format. - 📝 Configs Example: base.json
- 🖥️ CLI launch command
python -m turbo_alignment inference_chat --inference_settings_path tests/fixtures/configs/inference/sft/base.json
- 📚 Dataset type prepare your dataset in the
ClassificationDataset
, examples available here format. - 📝 Configs Example: classification_inference.json
- 🖥️ CLI launch command
python -m turbo_alignment inference_classification --inference_settings_path tests/fixtures/configs/inference/classification/base.json
- 📚 Dataset type prepare your dataset in the
MultimodalDataset
, examples available here format. - 📝 Configs Example: llama_llava_clip_pickle.json
- 🖥️ CLI launch command
python -m turbo_alignment inference_multimodal --inference_settings_path tests/fixtures/configs/inference/multimodal/llama_llava_clip_pickle.json
- 📚 Dataset type prepare your dataset in the
ChatDataset
, examples available here format. - 📝 Configs Example: rag_inference.json
- 🖥️ CLI launch command
python -m turbo_alignment inference_rag --inference_settings_path tests/fixtures/configs/inference/rag/base.json
- 📚 Dataset type prepare your dataset in the
SamplingRMDataset
, examples available here format. - 📝 Configs Example: random.json
- 🖥️ CLI launch command
python -m turbo_alignment random_sample --experiment_settings_path tests/fixtures/configs/sampling/base.json
- 📚 Dataset type prepare your dataset in the
SamplingRMDataset
, examples available here format. - 📝 Configs Example: rso.json
- 🖥️ CLI launch command
python -m turbo_alignment rso_sample --experiment_settings_path tests/fixtures/configs/sampling/rso.json
- 📚 Dataset type prepare your dataset in the
SamplingRMDataset
, examples available here format. - 📝 Configs Example: rm.json
- 🖥️ CLI launch command
python -m turbo_alignment rm_sample --experiment_settings_path tests/fixtures/configs/sampling/rm.json
- 📝 Configs Example: merge.json
- 🖥️ CLI launch command
python -m turbo_alignment merge_adapters_to_base --settings_path tests/fixtures/configs/utils/merge_adapters_to_base/merge.json
- 📝 Configs Example: coco2014_clip.json
- 🖥️ CLI launch command
python -m turbo_alignment preprocess_multimodal_dataset --settings_path tutorials/utils/preprocess/coco2014_clip.json
pip install turbo-alignment
For the latest features before an official release:
pip install git+https://github.com/turbo-llm/turbo-alignment.git
Clone the repository for access to examples:
git clone https://github.com/turbo-llm/turbo-alignment.git
Contributions are welcome! Read the contribution guide and set up the development environment:
git clone https://github.com/turbo-llm/turbo-alignment.git
cd turbo-alignment
poetry install
- Increasing number of tutorials
- Enhancing test coverage
- Implementation of Online RL methods like PPO and Reinforce
- Facilitating distributed training
- Incorporating low-memory training approaches
See the Installation section for detailed instructions.
Guides and docs are available here.
Tutorials are available here.
This project is licensed, see the LICENSE file for details.
-
DPO Trainer implementation inspired by Leandro von Werra et al. (2020) TRL: Transformer Reinforcement Learning. GitHub repository, GitHub. Available at: https://github.com/huggingface/trl.
-
Registry implementation inspired by Matt Gardner, Joel Grus, Mark Neumann, Oyvind Tafjord, Pradeep Dasigi, Nelson F. Liu, Matthew Peters, Michael Schmitz, and Luke S. Zettlemoyer. 2017. AllenNLP: A Deep Semantic Natural Language Processing Platform. Available at: arXiv:1803.07640.
-
Liger Kernels implementation inspired by Hsu, Pin-Lun, Dai, Yun, Kothapalli, Vignesh, Song, Qingquan, Tang, Shao, and Zhu, Siyu, 2024. Liger-Kernel: Efficient Triton Kernels for LLM Training. Available at: https://github.com/linkedin/Liger-Kernel.