From fba52b7f8ca73bee13bb1a027e223aaa90ff2200 Mon Sep 17 00:00:00 2001 From: QuanyiLi Date: Mon, 8 May 2023 15:30:51 +0100 Subject: [PATCH] batch generation --- .gitignore | 1 + scenarionet/tests/local_test/generate_data.sh | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 667439c..dcb2200 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ dataset/* **/combine/ **.json +**.log **/tmp/** **/failed_scenarios/ **/passed_senarios/ diff --git a/scenarionet/tests/local_test/generate_data.sh b/scenarionet/tests/local_test/generate_data.sh index 1fe35c9..7ed8e18 100644 --- a/scenarionet/tests/local_test/generate_data.sh +++ b/scenarionet/tests/local_test/generate_data.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -nohup python _test_convert_nuplan.py 2>&1 & -nohup python _test_convert_nuscenes.py 2>&1 & -nohup python _test_convert_pg.py 2>&1 & -nohup python _test_convert_waymo.py 2>&1 & \ No newline at end of file +nohup python _test_convert_nuplan.py > nuplan.log 2>&1 & +nohup python _test_convert_nuscenes.py > nuscenes.log 2>&1 & +nohup python _test_convert_pg.py > pg.log 2>&1 & +nohup python _test_convert_waymo.py > waymo.log 2>&1 & \ No newline at end of file