Last active
February 2, 2025 14:13
-
-
Save davidberenstein1957/b460cc90ad79c6dac56f106eb0f3f315 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /// script | |
# requires-python = ">=3.11,<3.12" | |
# dependencies = [ | |
# "distilabel[mlx]", | |
# ] | |
# /// | |
from distilabel.models import MlxLLM | |
from distilabel.pipeline import InstructionResponsePipeline | |
llm = MlxLLM( | |
path_or_hf_repo="mlx-community/Qwen2.5-32B-Instruct-4bit", | |
use_magpie_template=True, | |
magpie_pre_query_template="qwen2", | |
generation_kwargs={"temp": 1, "max_tokens": 4000}, | |
) | |
pipeline = InstructionResponsePipeline(llm=llm, batch_size=5, num_rows=10) | |
if __name__ == "__main__": | |
dataset = pipeline.run() | |
dataset.push_to_hub("davidberenstein1957/sft-dataset") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment