Update util.py
Browse files
util.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import pandas as pd
|
| 2 |
|
| 3 |
-
FILE_NAME="data/gaia_validation_20.jsonl"
|
| 4 |
|
| 5 |
def get_questions():
|
| 6 |
-
df=pd.read_json(FILE_NAME, lines=True)
|
| 7 |
result=[]
|
| 8 |
|
| 9 |
for index, row in df.iterrows():
|
|
|
|
| 1 |
import pandas as pd
|
| 2 |
|
| 3 |
+
FILE_NAME = "data/gaia_validation_20.jsonl"
|
| 4 |
|
| 5 |
def get_questions():
|
| 6 |
+
df = pd.read_json(FILE_NAME, lines=True)
|
| 7 |
result=[]
|
| 8 |
|
| 9 |
for index, row in df.iterrows():
|