shubhrapandit commited on
Commit
3cc0f9b
·
verified ·
1 Parent(s): 4000b0e

Update README.md

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