nm-research commited on
Commit
afe8cc6
·
verified ·
1 Parent(s): 7b37ead

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -109,7 +109,7 @@ ds = load_dataset(DATASET_ID, split=DATASET_SPLIT)
109
  ds = ds.shuffle(seed=42).select(range(NUM_CALIBRATION_SAMPLES))
110
 
111
  def preprocess(example):
112
- concat_txt = example["baseion"] + "\n" + example["output"]
113
  return {"text": concat_txt}
114
 
115
  ds = ds.map(preprocess)
 
109
  ds = ds.shuffle(seed=42).select(range(NUM_CALIBRATION_SAMPLES))
110
 
111
  def preprocess(example):
112
+ concat_txt = example["Instruction"] + "\n" + example["output"]
113
  return {"text": concat_txt}
114
 
115
  ds = ds.map(preprocess)