Skip to content

Commit 76ad61a

Browse files
author
wangyukai
committed
mention no save process for chunk step
1 parent bf99322 commit 76ad61a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/content/docs/evaluation/custom-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ finally:
176176

177177
## Tips
178178

179-
- **Use chunk mode for better performance**: Submit action lists via `client.step()` rather than single actions. The server executes them internally and returns only the final observation at the re-inference point.
179+
- **Use chunk mode for better performance**: Submit action lists via `client.step()` rather than single actions. The server executes them internally and returns only the final observation at the re-inference point. Only work for server with --no_save_process flag.
180180
- Load model weights in `__init__`, keep inference methods focused on prediction.
181181
- Use `reset=True` in `obs` to detect the first step and clear recurrent/buffer state.
182182
- Tune `chunk_size` to balance latency and throughput (e.g., `gmp eval --chunk_size 4`).

src/content/docs/evaluation/run-benchmark.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ description: Start the Isaac Sim server and run an EBench evaluation.
66
## 1. Start the server
77

88
```bash
9-
python ray_eval_server.py --host 0.0.0.0 --port 8087
9+
python ray_eval_server.py --host 0.0.0.0 --port 8087 --no_save_process
1010
```
1111

1212
Or with a local Isaac Sim installation:
1313

1414
```bash
15-
/isaac-sim/python.sh ray_eval_server.py --host 0.0.0.0 --port 8087
15+
/isaac-sim/python.sh ray_eval_server.py --host 0.0.0.0 --port 8087 --no_save_process
1616
```
1717

1818
## 2. Submit a task

0 commit comments

Comments
 (0)