shubhrapandit commited on
Commit
1edece5
·
verified ·
1 Parent(s): 0114da0

Update README.md

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