மனோஜ்குமார் பழனிச்சாமி 1 год назад
Родитель
Сommit
ae815b20d2
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      evaluation/swe_bench/swe_env_box.py

+ 3 - 1
evaluation/swe_bench/swe_env_box.py

@@ -51,7 +51,9 @@ class SWEBenchSSHBox(DockerSSHBox):
         assert exit_code == 0, f'Failed to set SWE_INSTANCE_ID in ~/.bashrc: {output}'
 
         logger.info('Sourcing swe_entry.sh to set up environment variables')
-        # larger timeout for SWEBench init to account for long-running installations (e.g., require compilation)
+        logger.info(
+            'Initialization of SWEBench may take approximately 10 minutes due to long-running installations, such as those requiring compilation.'
+        )
         exit_code, output = self.execute('source /swe_util/swe_entry.sh', timeout=600)
         logger.info('exit code: %d', exit_code)
         logger.info(output)