You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sphinx_doc/source/tutorial/trinity_configs.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -313,7 +313,7 @@ Controls the rollout models and workflow execution.
313
313
```yaml
314
314
explorer:
315
315
name: explorer
316
-
runner_num: 32
316
+
runner_per_model: 8
317
317
max_timeout: 900
318
318
max_retry_times: 2
319
319
env_vars: {}
@@ -324,17 +324,22 @@ explorer:
324
324
auxiliary_models:
325
325
- model_path: /PATH/TO/MODEL
326
326
tensor_parallel_size: 1
327
+
eval_interval: 100
328
+
eval_on_startup: True
327
329
```
328
330
329
331
- `name`: Name of the explorer. This name will be used as the Ray actor's name, so it must be unique.
330
-
- `runner_num`: Number of parallel workflow runners.
332
+
- `runner_per_model`: Number of parallel workflow runners per each rollout model.
331
333
- `max_timeout`: Maximum time (in seconds) for a workflow to complete.
332
334
- `max_retry_times`: Maximum number of retries for a workflow.
333
335
- `env_vars`: Environment variables to be set for every workflow runners.
334
336
- `rollout_model.engine_type`: Type of inference engine. Options: `vllm_async` (recommended), `vllm`.
335
337
- `rollout_model.engine_num`: Number of inference engines.
336
338
- `rollout_model.tensor_parallel_size`: Degree of tensor parallelism.
337
339
- `auxiliary_models`: Additional models used for custom workflows.
340
+
- `eval_interval`: Interval (in steps) for evaluating the model.
341
+
- `eval_on_startup`: Whether to evaluate the model on startup. More precisely, at step 0 with the original model, so it will not be triggered when restarting.
342
+
- `runner_num`: (*Deprecated*) Number of parallel workflow runners.
0 commit comments