jbaselga commited on
Commit
57871b5
·
verified ·
1 Parent(s): 4bfa09a

Update api_server.py

Browse files
Files changed (1) hide show
  1. api_server.py +5 -3
api_server.py CHANGED
@@ -18,10 +18,12 @@ else:
18
  # Carga y filtra nivel 1 GAIA (validation split)
19
  #ds = load_dataset("gaia-benchmark/GAIA", "2023_level1", split="validation",trust_remote_code=True)
20
  ds = load_dataset(
21
- "/app/GAIA", # ajusta la ruta según tu entorno
22
- "2023_level1",
23
- split="validation"
 
24
  )
 
25
  QUESTIONS = []
26
  GROUND_TRUTH: Dict[str, str] = {}
27
 
 
18
  # Carga y filtra nivel 1 GAIA (validation split)
19
  #ds = load_dataset("gaia-benchmark/GAIA", "2023_level1", split="validation",trust_remote_code=True)
20
  ds = load_dataset(
21
+ "gaia-benchmark/GAIA",
22
+ data_dir="2023_level1",
23
+ split="validation",
24
+ revision="refs/convert/parquet"
25
  )
26
+
27
  QUESTIONS = []
28
  GROUND_TRUTH: Dict[str, str] = {}
29