alozowski HF Staff commited on
Commit
448c286
·
1 Parent(s): 5c2239c

Increase timeout in evaluation.py

Browse files
Files changed (1) hide show
  1. yourbench_space/evaluation.py +1 -1
yourbench_space/evaluation.py CHANGED
@@ -23,7 +23,7 @@ async def run_process(args: list, custom_env = None) -> dict:
23
  *args, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE, env=custom_env
24
  )
25
  try:
26
- await asyncio.wait_for(process.wait(), timeout=300)
27
  except TimeoutError:
28
  logger.error("Lighteval process Timed Out")
29
 
 
23
  *args, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE, env=custom_env
24
  )
25
  try:
26
+ await asyncio.wait_for(process.wait(), timeout=350)
27
  except TimeoutError:
28
  logger.error("Lighteval process Timed Out")
29