shubhrapandit commited on
Commit
ba87c9a
·
verified ·
1 Parent(s): 9b4266a

Update README.md

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