merve HF staff commited on
Commit
c439932
β€’
1 Parent(s): f23d43c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -11,13 +11,13 @@ import os
11
  def load_data(idx):
12
  df = load_dataset("merve/turkish_instructions", split="train").to_pandas()
13
  sample = df.iloc[int(idx)]
14
- instruction = sample["talimat"]
15
  try:
16
- if sample["giriş"]:
17
- input_sample = sample["giriş"]
18
  except:
19
  input_sample="-"
20
- response = sample["Γ§Δ±ktΔ±"]
21
  return instruction, input_sample, response
22
 
23
 
 
11
  def load_data(idx):
12
  df = load_dataset("merve/turkish_instructions", split="train").to_pandas()
13
  sample = df.iloc[int(idx)]
14
+ instruction = sample[1]
15
  try:
16
+ if sample[2]:
17
+ input_sample = sample[2]
18
  except:
19
  input_sample="-"
20
+ response = sample[3]
21
  return instruction, input_sample, response
22
 
23