Skip to content

Commit 4282cb7

Browse files
committed
x
Signed-off-by: SumanthRH <[email protected]>
1 parent 9ad1238 commit 4282cb7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

recipes/sky-t1-preview/postprocess.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
def convert_to_sharegpt_format(row: Dict[str, Any], prompt_column, response_column):
2525
prompt = row[prompt_column]
26-
# accept
2726
# Create the conversation format
2827
conversations = [
2928
{"from": "user", "value": prompt},

recipes/sky-t1-preview/recipe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
This is the recipe for data curation for the Sky T1 Preview model .
33
"""
44

5+
# NOTE (sumanthrh): This script still has some rough edges and is a work in progress
6+
57
import argparse
68
import os
79
from pathlib import Path
@@ -93,7 +95,6 @@
9395
numina_ds_olympiads = numina_ds_olympiads.limit(num_samples)
9496
numina_ds_math = numina_ds_math.limit(num_samples)
9597

96-
# 2. Get model responses for each of the datasets
9798
datasets = [
9899
apps_ds,
99100
taco_ds_medium,
@@ -165,7 +166,6 @@
165166

166167
config = vLLMEngineProcessorConfig(
167168
model="Qwen/QwQ-32B-Preview",
168-
# model="Qwen/Qwen2-0.5B-Instruct",
169169
engine_kwargs=dict(
170170
enable_prefix_caching=True,
171171
enable_chunked_prefill=True,

0 commit comments

Comments
 (0)