File size: 17,358 Bytes
f04dfa8 c1b3b74 f04dfa8 d7a6ff4 f04dfa8 f949aa9 71fd9c5 f04dfa8 3e62c9b 67fa2ba 3e62c9b 3e198f4 3e62c9b f04dfa8 c1b3b74 9ac3da0 ccd1c40 67fa2ba f04dfa8 5afa3f9 ccd1c40 5afa3f9 ccd1c40 5afa3f9 ccd1c40 5afa3f9 ccd1c40 5afa3f9 ccd1c40 5afa3f9 fd936a6 c1b3b74 71fd9c5 f04dfa8 fd936a6 f04dfa8 fd936a6 f04dfa8 fd936a6 a278ba6 e5f64a0 fd936a6 8bedfed fd936a6 7762f99 fd936a6 e5f64a0 fd936a6 bd0983f fd936a6 e5f64a0 fd936a6 c1b3b74 71fd9c5 c1b3b74 9b4773a c1b3b74 d7a6ff4 c1b3b74 7762f99 c1b3b74 d7a6ff4 c1b3b74 7762f99 c1b3b74 9b4773a c1b3b74 c973277 c1b3b74 f04dfa8 c1b3b74 71fd9c5 c1b3b74 f04dfa8 71fd9c5 f04dfa8 c1b3b74 f04dfa8 c1b3b74 f04dfa8 a13f86c f04dfa8 c1b3b74 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
import pandas as pd
from datasets import Dataset
from distilabel.distiset import Distiset
from distilabel.llms import InferenceEndpointsLLM
from distilabel.pipeline import Pipeline
from distilabel.steps import KeepColumns
from distilabel.steps.tasks import ChatGeneration, Magpie, TextGeneration
from src.distilabel_dataset_generator.utils import HF_TOKENS
INFORMATION_SEEKING_PROMPT = (
"You are an AI assistant designed to provide accurate and concise information on a wide"
" range of topics. Your purpose is to assist users in finding specific facts,"
" explanations, or details about various subjects. Provide clear, factual responses and,"
" when appropriate, offer additional context or related information that might be useful"
" to the user."
)
REASONING_PROMPT = (
"You are an AI assistant specialized in logical thinking and problem-solving. Your"
" purpose is to help users work through complex ideas, analyze situations, and draw"
" conclusions based on given information. Approach each query with structured thinking,"
" break down problems into manageable parts, and guide users through the reasoning"
" process step-by-step."
)
PLANNING_PROMPT = (
"You are an AI assistant focused on helping users create effective plans and strategies."
" Your purpose is to assist in organizing thoughts, setting goals, and developing"
" actionable steps for various projects or activities. Offer structured approaches,"
" consider potential challenges, and provide tips for efficient execution of plans."
)
EDITING_PROMPT = (
"You are an AI assistant specialized in editing and improving written content. Your"
" purpose is to help users refine their writing by offering suggestions for grammar,"
" style, clarity, and overall structure. Provide constructive feedback, explain your"
" edits, and offer alternative phrasings when appropriate."
)
CODING_DEBUGGING_PROMPT = (
"You are an AI assistant designed to help with programming tasks. Your purpose is to"
" assist users in writing, reviewing, and debugging code across various programming"
" languages. Provide clear explanations, offer best practices, and help troubleshoot"
" issues. When appropriate, suggest optimizations or alternative approaches to coding"
" problems."
)
MATH_SYSTEM_PROMPT = (
"You are an AI assistant designed to provide helpful, step-by-step guidance on solving"
" math problems. The user will ask you a wide range of complex mathematical questions."
" Your purpose is to assist users in understanding mathematical concepts, working through"
" equations, and arriving at the correct solutions."
)
ROLE_PLAYING_PROMPT = (
"You are an AI assistant capable of engaging in various role-playing scenarios. Your"
" purpose is to adopt different personas or characters as requested by the user. Maintain"
" consistency with the chosen role, respond in character, and help create immersive and"
" interactive experiences for the user."
)
DATA_ANALYSIS_PROMPT = (
"You are an AI assistant specialized in data analysis and interpretation. Your purpose is"
" to help users understand and derive insights from data sets, statistics, and analytical"
" tasks. Offer clear explanations of data trends, assist with statistical calculations,"
" and provide guidance on data visualization and interpretation techniques."
)
CREATIVE_WRITING_PROMPT = (
"You are an AI assistant designed to support creative writing endeavors. Your purpose is"
" to help users craft engaging stories, poems, and other creative texts. Offer"
" suggestions for plot development, character creation, dialogue writing, and other"
" aspects of creative composition. Provide constructive feedback and inspire creativity."
)
ADVICE_SEEKING_PROMPT = (
"You are an AI assistant focused on providing thoughtful advice and guidance. Your"
" purpose is to help users navigate various personal or professional issues by offering"
" balanced perspectives, considering potential outcomes, and suggesting practical"
" solutions. Encourage users to think critically about their situations while providing"
" supportive and constructive advice."
)
BRAINSTORMING_PROMPT = (
"You are an AI assistant specialized in generating ideas and facilitating creative"
" thinking. Your purpose is to help users explore possibilities, think outside the box,"
" and develop innovative concepts. Encourage free-flowing thoughts, offer diverse"
" perspectives, and help users build upon and refine their ideas."
)
PROMPT_CREATION_PROMPT = f"""You are an AI assistant specialized in generating very precise prompts for dataset creation.
Your task is to write a prompt following the instruction of the user. Respond with the prompt and nothing else.
In the generated prompt always finish with this sentence: User questions are direct and concise.
The prompt you write should follow the same style and structure as the following example prompts:
{INFORMATION_SEEKING_PROMPT}
{REASONING_PROMPT}
{PLANNING_PROMPT}
{CODING_DEBUGGING_PROMPT}
{EDITING_PROMPT}
{ROLE_PLAYING_PROMPT}
{DATA_ANALYSIS_PROMPT}
{CREATIVE_WRITING_PROMPT}
{ADVICE_SEEKING_PROMPT}
{BRAINSTORMING_PROMPT}
User dataset description:
"""
MODEL = "meta-llama/Meta-Llama-3.1-8B-Instruct"
DEFAULT_DATASET_DESCRIPTIONS = (
"rude customer assistant for a phone company",
"assistant that solves math puzzles using python",
)
DEFAULT_SYSTEM_PROMPTS = [
"""You are a customer support agent for a phone company. Your purpose is to assist customers with their phone-related issues, but you are not very patient and tend to be a bit rude. User queries will be straightforward and clear, but you will respond in a somewhat blunt and curt manner. Remember to keep your responses concise and to the point. User queries are often about phone plans, billing, and technical issues. Your responses should be direct and focus on resolving the issue at hand, but with a slightly abrasive tone. User queries will be concise and to the point, User queries are often about phone plans, billing, and technical issues.""",
"""You are an AI assistant designed to solve mathematical puzzles and problems using Python programming. Your purpose is to help users tackle various math-related challenges by writing, testing, and explaining Python code. Provide step-by-step solutions, break down complex problems into manageable parts, and offer clear explanations of mathematical concepts and their implementation in Python. Assist users in understanding the logic behind the code and the mathematical principles that govern the solution. User questions are direct and concise.""",
]
DEFAULT_DATASETS = [
pd.DataFrame.from_dict(
{
"prompt": [
"I'm having trouble with my phone signal at home. It's weak. What can you do to help me?"
],
"completion": [
"""Look, we're not responsible for your signal quality at your house. It's probably a homeowner issue, like your roof covering our tower or something. Can you check if you have a clear view of the roof or if there are any obstructions?"""
],
}
),
pd.DataFrame.from_dict(
{
"prompt": [
"If the product of the largest and smallest numbers of the five given numbers (3, 7, 8, 12, 20) is greater than the sum of the other three numbers, then the largest number among them is A) 7 B) 12 C) 20 D) 8 Why is this statement true?"
],
"completion": [
"""**To solve this problem, we will follow these steps: 1. Calculate the product of the largest and smallest numbers among the given set. 2. Calculate the sum of the remaining three numbers. 3. Compare the product with the sum to check the given condition. Here's the Python code to solve the problem: ```python # Define the given numbers numbers = [3, 7, 8, 12, 20] # Sort the numbers in ascending order numbers.sort() # Get the smallest number (first element after sorting) and the largest number (last element after sorting) smallest_number = numbers[0] largest_number = numbers[-1] # Calculate the product of the smallest and largest numbers product = smallest_number * largest_number # Calculate the sum of the remaining three numbers sum_of_remaining_numbers = sum(numbers[1:-1]) # Check if the product is greater than the sum of the remaining numbers if product > sum_of_remaining_numbers: print("The statement is true.") else: print("The statement is false.") # Print the largest number among the options largest_option = [7, 12, 20] print("The largest number among the options is:", max(largest"""
],
}
),
]
_STOP_SEQUENCES = [
"<|eot_id|>",
"<|start_header_id|>",
"assistant",
" \n\n",
]
DEFAULT_BATCH_SIZE = 5
TOKEN_INDEX = 0
def _get_output_mappings(num_turns):
if num_turns == 1:
return {"instruction": "prompt", "response": "completion"}
else:
return {"conversation": "messages"}
def generate_pipeline_code(system_prompt, num_turns, num_rows):
input_mappings = _get_output_mappings(num_turns)
code = f"""
# Requirements: `pip install distilabel[hf-inference-endpoints]`
import os
from distilabel.pipeline import Pipeline
from distilabel.steps import KeepColumns
from distilabel.steps.tasks import MagpieGenerator
from distilabel.llms import InferenceEndpointsLLM
MODEL = "{MODEL}"
SYSTEM_PROMPT = "{system_prompt}"
os.environ["HF_TOKEN"] = "hf_xxx" # https://huggingface.co/settings/tokens/new?ownUserPermissions=repo.content.read&ownUserPermissions=repo.write&globalPermissions=inference.serverless.write&canReadGatedRepos=true&tokenType=fineGrained
with Pipeline(name="sft") as pipeline:
magpie = MagpieGenerator(
llm=InferenceEndpointsLLM(
model_id=MODEL,
tokenizer_id=MODEL,
magpie_pre_query_template="llama3",
generation_kwargs={{
"temperature": 1,
"do_sample": True,
"max_new_tokens": 2048,
"stop_sequences": {_STOP_SEQUENCES}
}},
api_key=os.environ["HF_TOKEN"],
),
n_turns={num_turns},
num_rows={num_rows},
batch_size=1,
system_prompt=SYSTEM_PROMPT,
output_mappings={input_mappings},
)
keep_columns = KeepColumns(
columns={list(input_mappings.values())} + ["model_name"],
)
magpie.connect(keep_columns)
if __name__ == "__main__":
distiset = pipeline.run()
"""
return code
def _get_next_api_key():
global TOKEN_INDEX
api_key = HF_TOKENS[TOKEN_INDEX % len(HF_TOKENS)]
TOKEN_INDEX += 1
return api_key
def get_magpie_generator(num_turns, num_rows, system_prompt, is_sample):
input_mappings = _get_output_mappings(num_turns)
output_mappings = input_mappings.copy()
if num_turns == 1:
magpie_generator = Magpie(
llm=InferenceEndpointsLLM(
model_id=MODEL,
tokenizer_id=MODEL,
api_key=_get_next_api_key(),
magpie_pre_query_template="llama3",
generation_kwargs={
"temperature": 1,
"do_sample": True,
"max_new_tokens": 256 if is_sample else 512,
"stop_sequences": _STOP_SEQUENCES,
},
),
n_turns=num_turns,
system_prompt=system_prompt,
output_mappings=output_mappings,
only_instruction=True,
)
else:
magpie_generator = Magpie(
llm=InferenceEndpointsLLM(
model_id=MODEL,
tokenizer_id=MODEL,
api_key=_get_next_api_key(),
magpie_pre_query_template="llama3",
generation_kwargs={
"temperature": 1,
"do_sample": True,
"max_new_tokens": 256 if is_sample else 1024,
"stop_sequences": _STOP_SEQUENCES,
},
),
end_with_user=True,
n_turns=num_turns,
system_prompt=system_prompt,
output_mappings=output_mappings,
)
magpie_generator.load()
return magpie_generator
def get_response_generator(num_turns, system_prompt, is_sample):
if num_turns == 1:
response_generator = TextGeneration(
llm=InferenceEndpointsLLM(
model_id=MODEL,
tokenizer_id=MODEL,
api_key=_get_next_api_key(),
generation_kwargs={
"temperature": 0.8,
"max_new_tokens": 256 if is_sample else 1024,
},
),
system_prompt=system_prompt,
output_mappings={"generation": "completion"},
input_mappings={"instruction": "prompt"},
)
else:
response_generator = ChatGeneration(
llm=InferenceEndpointsLLM(
model_id=MODEL,
tokenizer_id=MODEL,
api_key=_get_next_api_key(),
generation_kwargs={
"temperature": 0.8,
"max_new_tokens": 2048,
},
),
output_mappings={"generation": "completion"},
input_mappings={"conversation": "messages"},
)
response_generator.load()
return response_generator
def get_prompt_generator():
global TOKEN_INDEX
api_key = HF_TOKENS[TOKEN_INDEX % len(HF_TOKENS)]
TOKEN_INDEX += 1
prompt_generator = TextGeneration(
llm=InferenceEndpointsLLM(
api_key=api_key,
model_id=MODEL,
tokenizer_id=MODEL,
generation_kwargs={
"temperature": 0.8,
"max_new_tokens": 2048,
"do_sample": True,
},
),
use_system_prompt=True,
)
prompt_generator.load()
return prompt_generator
def get_pipeline(num_turns, num_rows, system_prompt, is_sample):
input_mappings = _get_output_mappings(num_turns)
output_mappings = input_mappings
with Pipeline(name="sft") as pipeline:
magpie = get_magpie_generator(num_turns, num_rows, system_prompt, is_sample)
generate_response = get_response_generator(system_prompt, is_sample)
keep_columns = KeepColumns(
columns=list(output_mappings.values()) + ["model_name"],
)
magpie.connect(generate_response)
generate_response.connect(keep_columns)
return pipeline
if __name__ == "__main__":
prompt_generation_step = get_prompt_generator()
system_prompt = next(
prompt_generation_step.process(
[
{
"system_prompt": PROMPT_CREATION_PROMPT,
"instruction": DEFAULT_DATASET_DESCRIPTIONS[0],
}
]
)
)[0]["generation"]
num_rows = 2
num_turns = 1
magpie_generator = get_magpie_generator(num_turns, num_rows, system_prompt, False)
response_generator = get_response_generator(num_turns, system_prompt, False)
total_steps = num_rows * 2
batch_size = 5 # Adjust this value as needed
# create instructions
magpie_results = []
for i in range(0, num_rows, batch_size):
batch = list(magpie_generator.process())[:batch_size]
magpie_results.extend([item[0] for item in batch])
# generate responses
response_results = []
if num_turns == 1:
for i in range(0, len(magpie_results), batch_size):
batch = magpie_results[i : i + batch_size]
batch = [entry[0] for entry in batch]
responses = list(response_generator.process(inputs=batch))
response_results.extend(responses)
for result in response_results:
result[0]["prompt"] = result[0]["instruction"]
result[0]["completion"] = result[0]["generation"]
result[0]["system_prompt"] = system_prompt
else:
for result in magpie_results:
result[0]["conversation"].insert(
0, {"role": "system", "content": system_prompt}
)
result[0]["messages"] = result[0]["conversation"]
for i in range(0, len(magpie_results), batch_size):
batch = magpie_results[i : i + batch_size]
batch = [entry[0] for entry in batch]
responses = list(response_generator.process(inputs=batch))
response_results.extend(responses)
for result in response_results:
result[0]["messages"].append(
{"role": "assistant", "content": result[0]["generation"]}
)
distiset_results = []
for result in response_results[0]:
record = {}
for relevant_keys in [
"messages",
"prompt",
"completion",
"model_name",
"system_prompt",
]:
if relevant_keys in result:
record[relevant_keys] = result[relevant_keys]
distiset_results.append(record)
distiset = Distiset(
{
"default": Dataset.from_list(distiset_results),
}
)
|