GitXplorerGitXplorer
h

alignment-handbook

public
4905 stars
427 forks
91 issues

Commits

List of commits on branch main.
Verified
ae3f44fc7d8003d706752ca06f689574dffa3b76

Add Smollm2 pipeline (#205)

lloubnabnl committed 2 months ago
Verified
e057d7f45becb2bd4eef184c74a700132b2ec223

Change 'three' to 'four' in README (#202)

ppoludmik committed 2 months ago
Verified
7d711cd80dff17df78f8340df1b7616af0809407

Update model_utils.py for new API (#199)

kkashif committed 4 months ago
Verified
27f7dbf00663dab66ad7334afb7a1311fa251f41

Fix BitsAndBytes JSON Serializable (#191)

ddeep-diver committed 5 months ago
Verified
a8dcde2cd3c3328514df45d4e6242f5a08a8f6e2

Use ungated models for unit tests (#196)

llewtun committed 5 months ago
Verified
28bf9024773af751acdefad6bc6c5815445fc6ba

Use `get_chat_template()` instead of `default_chat_template` (#197)

aalvarobartt committed 5 months ago

README

The README file for this repository.

šŸ¤— Models & Datasets | šŸ“ƒ Technical Report

The Alignment Handbook

Robust recipes to continue pretraining and to align language models with human and AI preferences.

What is this?

Just one year ago, chatbots were out of fashion and most people hadn't heard about techniques like Reinforcement Learning from Human Feedback (RLHF) to align language models with human preferences. Then, OpenAI broke the internet with ChatGPT and Meta followed suit by releasing the Llama series of language models which enabled the ML community to build their very own capable chatbots. This has led to a rich ecosystem of datasets and models that have mostly focused on teaching language models to follow instructions through supervised fine-tuning (SFT).

However, we know from the InstructGPT and Llama2 papers that significant gains in helpfulness and safety can be had by augmenting SFT with human (or AI) preferences. At the same time, aligning language models to a set of preferences is a fairly novel idea and there are few public resources available on how to train these models, what data to collect, and what metrics to measure for best downstream performance.

The Alignment Handbook aims to fill that gap by providing the community with a series of robust training recipes that span the whole pipeline.

News šŸ—žļø

  • November 21, 2024: We release the recipe for finet-uning SmolLM2-Instruct.
  • August 18, 2024: We release SmolLM-Instruct v0.2, along with the recipe to fine-tuning small LLMs šŸ’»
  • April 12, 2024: We release Zephyr 141B (A35B), in collaboration with Argilla and Kaist AI, along with the recipe to fine-tune Mixtral 8x22B with ORPO šŸŖ
  • March 12, 2024: We release StarChat2 15B, along with the recipe to train capable coding assistants šŸŒŸ
  • March 1, 2024: We release Zephyr 7B Gemma, which is a new recipe to align Gemma 7B with RLAIF šŸ”„
  • February 1, 2024: We release a recipe to align open LLMs with Constitutional AI šŸ“œ! See the recipe and the blog post for details.
  • January 18, 2024: We release a suite of evaluations of DPO vs KTO vs IPO, see the recipe and the blog post for details.
  • November 10, 2023: We release all the training code to replicate Zephyr-7b-Ī² šŸŖ! We also release No Robots, a brand new dataset of 10,000 instructions and demonstrations written entirely by skilled human annotators.

Links šŸ”—

How to navigate this project šŸ§­

This project is simple by design and mostly consists of:

  • scripts to train and evaluate models. Four steps are included: continued pretraining, supervised-finetuning (SFT) for chat, preference alignment with DPO, and supervised-finetuning with preference alignment with ORPO. Each script supports distributed training of the full model weights with DeepSpeed ZeRO-3, or LoRA/QLoRA for parameter-efficient fine-tuning.
  • recipes to reproduce models like Zephyr 7B. Each recipe takes the form of a YAML file which contains all the parameters associated with a single training run. A gpt2-nl recipe is also given to illustrate how this handbook can be used for language or domain adaptation, e.g. by continuing to pretrain on a different language, and then SFT and DPO tuning the result.

We are also working on a series of guides to explain how methods like direct preference optimization (DPO) work, along with lessons learned from gathering human preferences in practice. To get started, we recommend the following:

  1. Follow the installation instructions to set up your environment etc.
  2. Replicate Zephyr-7b-Ī² by following the recipe instructions.

If you would like to train chat models on your own datasets, we recommend following the dataset formatting instructions here.

Contents

The initial release of the handbook will focus on the following techniques:

  • Continued pretraining: adapt language models to a new language or domain, or simply improve it by continued pretraining (causal language modeling) on a new dataset.
  • Supervised fine-tuning: teach language models to follow instructions and tips on how to collect and curate your training dataset.
  • Reward modeling: teach language models to distinguish model responses according to human or AI preferences.
  • Rejection sampling: a simple, but powerful technique to boost the performance of your SFT model.
  • Direct preference optimisation (DPO): a powerful and promising alternative to PPO.
  • Odds Ratio Preference Optimisation (ORPO): a technique to fine-tune language models with human preferences, combining SFT and DPO in a single stage.

Installation instructions

To run the code in this project, first, create a Python virtual environment using e.g. Conda:

conda create -n handbook python=3.10 && conda activate handbook

Next, install PyTorch v2.1.2 - the precise version is important for reproducibility! Since this is hardware-dependent, we direct you to the PyTorch Installation Page.

You can then install the remaining package dependencies as follows:

git clone https://github.com/huggingface/alignment-handbook.git
cd ./alignment-handbook/
python -m pip install .

You will also need Flash Attention 2 installed, which can be done by running:

python -m pip install flash-attn --no-build-isolation

Note If your machine has less than 96GB of RAM and many CPU cores, reduce the MAX_JOBS arguments, e.g. MAX_JOBS=4 pip install flash-attn --no-build-isolation

Next, log into your Hugging Face account as follows:

huggingface-cli login

Finally, install Git LFS so that you can push models to the Hugging Face Hub:

sudo apt-get install git-lfs

You can now check out the scripts and recipes directories for instructions on how to train some models šŸŖ!

Project structure

ā”œā”€ā”€ LICENSE
ā”œā”€ā”€ Makefile                    <- Makefile with commands like `make style`
ā”œā”€ā”€ README.md                   <- The top-level README for developers using this project
ā”œā”€ā”€ chapters                    <- Educational content to render on hf.co/learn
ā”œā”€ā”€ recipes                     <- Recipe configs, accelerate configs, slurm scripts
ā”œā”€ā”€ scripts                     <- Scripts to train and evaluate chat models
ā”œā”€ā”€ setup.cfg                   <- Installation config (mostly used for configuring code quality & tests)
ā”œā”€ā”€ setup.py                    <- Makes project pip installable (pip install -e .) so `alignment` can be imported
ā”œā”€ā”€ src                         <- Source code for use in this project
ā””ā”€ā”€ tests                       <- Unit tests

Citation

If you find the content of this repo useful in your work, please cite it as follows via \usepackage{biblatex}:

@software{Tunstall_The_Alignment_Handbook,
  author = {Tunstall, Lewis and Beeching, Edward and Lambert, Nathan and Rajani, Nazneen and Huang, Shengyi and Rasul, Kashif and Bartolome, Alvaro and M. Rush, Alexander and Wolf, Thomas},
  license = {Apache-2.0},
  title = {{The Alignment Handbook}},
  url = {https://github.com/huggingface/alignment-handbook},
  version = {0.3.0.dev0}
}