Spaces:
Paused
Paused
Update helper.py
Browse files
helper.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import pandas as pd
|
| 2 |
|
| 3 |
-
FILE_PATH = "https://huggingface.co/datasets/gaia-benchmark/GAIA/blob/main/2023/validation/"
|
| 4 |
|
| 5 |
def get_questions():
|
| 6 |
-
df = pd.read_json(
|
| 7 |
df = df.sort_values(by = "Level", ascending = True)
|
| 8 |
|
| 9 |
print(df["Level", "Question", "file_name", "final_answer"])
|
|
|
|
| 1 |
import pandas as pd
|
| 2 |
|
| 3 |
+
#FILE_PATH = "https://huggingface.co/datasets/gaia-benchmark/GAIA/blob/main/2023/validation/"
|
| 4 |
|
| 5 |
def get_questions():
|
| 6 |
+
df = pd.read_json("gaia.jsonl", lines = True)
|
| 7 |
df = df.sort_values(by = "Level", ascending = True)
|
| 8 |
|
| 9 |
print(df["Level", "Question", "file_name", "final_answer"])
|