morganmcg1 / alignment-handbook

Robust recipes for to align language models with human and AI preferences

Home Page:https://huggingface.co/HuggingFaceH4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Alignment Handbook

Robust recipes 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 10, 2023: We release all the training code to replicate Zephyr-7b-Ξ² πŸͺ!

Links πŸ”—

Contents

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

  • Supervised fine-tuning: teach language models to follow instructions and tips on how to collect and curate your own 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.

Getting started

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.0 - 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:

python -m pip install .

You will also need Flash Attention 2 installed, which can be done by running: _Note: If your machine has less than 96GB of RAM and many CPU cores, reduce the MAX_JOBS., e.g. MAX_JOBS=4 pip install flash-attn --no-build-isolation _

python -m 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 checkout 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:

@misc{alignment_handbook2023,
  author = {Lewis Tunstall and Edward Beeching and Nathan Lambert and Nazneen Rajani and Alexander M. Rush and Thomas Wolf},
  title = {The Alignment Handbook},
  year = {2023},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/huggingface/alignment-handbook}}
}

About

Robust recipes for to align language models with human and AI preferences

https://huggingface.co/HuggingFaceH4

License:Apache License 2.0


Languages

Language:Python 93.3%Language:Shell 4.9%Language:Makefile 1.7%Language:MDX 0.1%