ericxsun / distilabel

Distilabel is a framework for synthetic data and AI feedback for AI engineers that require high-quality outputs, full data ownership, and overall efficiency

Home Page:https://distilabel.argilla.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚗️ distilabel

AI Feedback (AIF) framework for building datasets with and for LLMs.

Tip

To discuss, get support, or give feedback join Argilla's Slack Community and you will be able to engage with our amazing community and also with the core developers of argilla and distilabel.

overview

Features

  • Integrations with the most popular libraries and APIs for LLMs: HF Transformers, OpenAI, vLLM, etc.
  • Multiple tasks for Self-Instruct, Preference datasets and more.
  • Dataset export to Argilla for easy data exploration and further annotation.

Warning

distilabel is currently under active development and we're iterating quickly, so take into account that we may introduce breaking changes in the releases during the upcoming weeks. Also, the README might be outdated so the best place to get started is the documentation.

Installation

pip install distilabel --upgrade

Requires Python 3.8+

In addition, the following extras are available:

  • hf-transformers: for using models available in transformers package via the TransformersLLM integration.
  • hf-inference-endpoints: for using the HuggingFace Inference Endpoints via the InferenceEndpointsLLM integration.
  • openai: for using (Azure) OpenAI API models via the OpenAILLM integration.
  • vllm: for using vllm serving engine via the vLLM integration.
  • llama-cpp: for using llama-cpp-python as Python bindings for llama.cpp.
  • ollama: for using Ollama and their available models via their Python client.
  • together: for using Together Inference via their Python client.
  • anyscale: for using Anyscale endpoints.
  • ollama: for using Ollama.
  • mistralai: for using Mistral AI via their Python client.
  • vertexai: for using both Google Vertex AI offerings: their proprietary models and endpoints via their Python client google-cloud-aiplatform.
  • argilla: for exporting the generated datasets to Argilla.

Example

To run the following example you must install distilabel with both openai and argilla extras:

pip install "distilabel[openai,argilla]" --upgrade

Then run the following example:

from datasets import load_dataset
from distilabel.llm import OpenAILLM
from distilabel.pipeline import pipeline
from distilabel.tasks import TextGenerationTask

dataset = (
    load_dataset("HuggingFaceH4/instruction-dataset", split="test[:10]")
    .remove_columns(["completion", "meta"])
    .rename_column("prompt", "input")
)

# Create a `Task` for generating text given an instruction.
task = TextGenerationTask()

# Create a `LLM` for generating text using the `Task` created in
# the first step. As the `LLM` will generate text, it will be a `generator`.
generator = OpenAILLM(task=task, max_new_tokens=512)

# Create a pre-defined `Pipeline` using the `pipeline` function and the
# `generator` created in step 2. The `pipeline` function will create a
# `labeller` LLM using `OpenAILLM` with the `UltraFeedback` task for
# instruction following assessment.
pipeline = pipeline("preference", "instruction-following", generator=generator)

dataset = pipeline.generate(dataset)

Additionally, you can push the generated dataset to Argilla for further exploration and annotation:

import argilla as rg

rg.init(api_url="<YOUR_ARGILLA_API_URL>", api_key="<YOUR_ARGILLA_API_KEY>")

# Convert the dataset to Argilla format
rg_dataset = dataset.to_argilla()

# Push the dataset to Argilla
rg_dataset.push_to_argilla(name="preference-dataset", workspace="admin")

Azure OpenAI API

To use the Azure OpenAI API you can use the distilabel.llm.OpenAILLM but in a slightly different way than using the regular OpenAI API. For now, you will need to instantiate an openai.AzureOpenAI client yourself and pass that to the OpenAILLM constructor rather than relying on its model and api_key arguments. Secondly, instead of using model to define the model you want to use (like gpt4), you need to set model to your Azure deployment name.

An example

from distilabel.llm import OpenAILLM
from distilabel.tasks import TextGenerationTask
from openai import AzureOpenAI


api_key= "<azure-super-secret-api-key>"
api_version = "2024-02-15-preview"  # replace with your own
azure_endpoint = "https://<endpoint-name>.openai.azure.com"
deployment = "<deployment-name>"

client = AzureOpenAI(
    api_key=api_key,
    api_version=api_version,
    azure_endpoint=azure_endpoint
)

llm = OpenAILLM(
    task=TextGenerationTask(),
    client=client,  # Important!
    model=deployment,  # Important!
)

messages = [{"input": "Write me a short poem."}]

print(llm.generate(messages))

More examples

Find more examples of different use cases of distilabel under examples/.

Or check out the following Google Colab Notebook:

Open In Colab

Badges

If you build something cool with distilabel consider adding one of these badges to your dataset or model card.

[<img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>](https://github.com/argilla-io/distilabel)

Built with Distilabel

[<img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-dark.png" alt="Built with Distilabel" width="200" height="32"/>](https://github.com/argilla-io/distilabel)

Built with Distilabel

Contribute

To directly contribute with distilabel, check our good first issues or open a new one.

References

About

Distilabel is a framework for synthetic data and AI feedback for AI engineers that require high-quality outputs, full data ownership, and overall efficiency

https://distilabel.argilla.io

License:Apache License 2.0


Languages

Language:Python 98.2%Language:Jinja 1.8%Language:Makefile 0.0%