Skip to content

Commit c8a263b

Browse files
committed
change env_num to 1
1 parent 46f8494 commit c8a263b

4 files changed

Lines changed: 15 additions & 25 deletions

File tree

scripts/eval/configs/challenge_cfg.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
env_type='vln_pe',
1919
env_settings={
2020
'use_fabric': False,
21-
'headless': True, # display option: set to False will open isaac-sim interactive window
21+
'headless': True, # display option: set to False will open isaac-sim interactive window
2222
},
2323
),
2424
task=TaskCfg(
2525
task_name='rdp_iros_test',
2626
task_settings={
27-
'env_num': 2,
28-
'use_distributed': False, # Ray distributed framework
27+
'env_num': 1,
28+
'use_distributed': False, # Ray distributed framework
2929
'proc_num': 8,
3030
},
3131
scene=SceneCfg(
@@ -34,7 +34,7 @@
3434
),
3535
robot_name='h1',
3636
robot_usd_path='data/Embodiments/vln-pe/h1/h1_vln_pointcloud.usd',
37-
camera_resolution=[256,256], # (W,H)
37+
camera_resolution=[256, 256], # (W,H)
3838
camera_prim_path='torso_link/h1_pano_camera_0',
3939
),
4040
dataset=EvalDatasetCfg(
@@ -45,8 +45,5 @@
4545
'filter_stairs': False,
4646
},
4747
),
48-
eval_settings={
49-
'save_to_json': True,
50-
'vis_output': True # save result to video under logs/
51-
}
48+
eval_settings={'save_to_json': True, 'vis_output': True}, # save result to video under logs/
5249
)

scripts/eval/configs/challenge_kujiale_cfg.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
env_type='vln_pe',
1919
env_settings={
2020
'use_fabric': False,
21-
'headless': True, # display option: set to False will open isaac-sim interactive window
21+
'headless': True, # display option: set to False will open isaac-sim interactive window
2222
},
2323
),
2424
task=TaskCfg(
2525
task_name='challenge_kujiale_eval',
2626
task_settings={
27-
'env_num': 2,
28-
'use_distributed': False, # Ray distributed framework
27+
'env_num': 1,
28+
'use_distributed': False, # Ray distributed framework
2929
'proc_num': 8,
3030
},
3131
scene=SceneCfg(
@@ -34,7 +34,7 @@
3434
),
3535
robot_name='h1',
3636
robot_usd_path='data/Embodiments/vln-pe/h1/h1_vln_pointcloud.usd',
37-
camera_resolution=[256,256], # (W,H)
37+
camera_resolution=[256, 256], # (W,H)
3838
camera_prim_path='torso_link/h1_pano_camera_0',
3939
),
4040
dataset=EvalDatasetCfg(
@@ -45,8 +45,5 @@
4545
'filter_stairs': False,
4646
},
4747
),
48-
eval_settings={
49-
'save_to_json': True,
50-
'vis_output': True # save result to video under logs/
51-
}
48+
eval_settings={'save_to_json': True, 'vis_output': True}, # save result to video under logs/
5249
)

scripts/eval/configs/challenge_mp3d_cfg.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
task=TaskCfg(
2525
task_name='challenge_mp3d_eval',
2626
task_settings={
27-
'env_num': 2,
27+
'env_num': 1,
2828
'use_distributed': False,
2929
'proc_num': 2,
3030
},
@@ -34,10 +34,10 @@
3434
),
3535
robot_name='h1',
3636
robot_usd_path='data/Embodiments/vln-pe/h1/h1_vln_pointcloud.usd',
37-
camera_resolution=[256,256], # (W,H)
37+
camera_resolution=[256, 256], # (W,H)
3838
camera_prim_path='torso_link/h1_pano_camera_0',
39-
vlnce=False, # vlnpe by default
40-
obstacle_detection=False, # whether allow flash across obstacle
39+
vlnce=False, # vlnpe by default
40+
obstacle_detection=False, # whether allow flash across obstacle
4141
),
4242
dataset=EvalDatasetCfg(
4343
dataset_type="mp3d",
@@ -47,8 +47,5 @@
4747
'filter_stairs': False,
4848
},
4949
),
50-
eval_settings={
51-
'save_to_json': False,
52-
'vis_output': True
53-
}
50+
eval_settings={'save_to_json': False, 'vis_output': True},
5451
)

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ skip =
2424
*.txt
2525
*.md
2626
*.json
27-
exclude = internnav/model/basemodel/LongCLIP/eval/classification/imagenet/categories.txt
2827

2928

3029
[flake8]

0 commit comments

Comments
 (0)