batch generation

This commit is contained in:
QuanyiLi
2023-05-08 15:30:51 +01:00
parent a9c2b58edc
commit fba52b7f8c
2 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@@ -13,6 +13,7 @@ dataset/*
**/combine/ **/combine/
**.json **.json
**.log
**/tmp/** **/tmp/**
**/failed_scenarios/ **/failed_scenarios/
**/passed_senarios/ **/passed_senarios/

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
nohup python _test_convert_nuplan.py 2>&1 & nohup python _test_convert_nuplan.py > nuplan.log 2>&1 &
nohup python _test_convert_nuscenes.py 2>&1 & nohup python _test_convert_nuscenes.py > nuscenes.log 2>&1 &
nohup python _test_convert_pg.py 2>&1 & nohup python _test_convert_pg.py > pg.log 2>&1 &
nohup python _test_convert_waymo.py 2>&1 & nohup python _test_convert_waymo.py > waymo.log 2>&1 &