Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -12,10 +12,10 @@ 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 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
input_sample="-"
|
20 |
response = sample[3]
|
21 |
return instruction, input_sample, response
|
|
|
12 |
df = load_dataset("merve/turkish_instructions", split="train").to_pandas()
|
13 |
sample = df.iloc[int(idx)]
|
14 |
instruction = sample[1]
|
15 |
+
|
16 |
+
if sample[2]:
|
17 |
+
input_sample = sample[2]
|
18 |
+
else:
|
19 |
input_sample="-"
|
20 |
response = sample[3]
|
21 |
return instruction, input_sample, response
|