bstraehle commited on
Commit
ddfb4ca
·
verified ·
1 Parent(s): 5258ada

Update helper.py

Browse files
Files changed (1) hide show
  1. helper.py +2 -2
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(FILE_PATH + "metadata.jsonl", lines = True)
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"])