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
@@ -314,7 +314,7 @@ Controls the rollout models and workflow execution.
314
314
```yaml
315
315
explorer:
316
316
name: explorer
317
-
runner_num: 32
317
+
runner_per_model: 8
318
318
max_timeout: 900
319
319
max_retry_times: 2
320
320
env_vars: {}
@@ -325,17 +325,22 @@ explorer:
325
325
auxiliary_models:
326
326
- model_path: /PATH/TO/MODEL
327
327
tensor_parallel_size: 1
328
+
eval_interval: 100
329
+
eval_on_startup: True
328
330
```
329
331
330
332
- `name`: Name of the explorer. This name will be used as the Ray actor's name, so it must be unique.
331
-
- `runner_num`: Number of parallel workflow runners.
333
+
- `runner_per_model`: Number of parallel workflow runners per each rollout model.
332
334
- `max_timeout`: Maximum time (in seconds) for a workflow to complete.
333
335
- `max_retry_times`: Maximum number of retries for a workflow.
334
336
- `env_vars`: Environment variables to be set for every workflow runners.
335
337
- `rollout_model.engine_type`: Type of inference engine. Options: `vllm_async` (recommended), `vllm`.
336
338
- `rollout_model.engine_num`: Number of inference engines.
337
339
- `rollout_model.tensor_parallel_size`: Degree of tensor parallelism.
338
340
- `auxiliary_models`: Additional models used for custom workflows.
341
+
- `eval_interval`: Interval (in steps) for evaluating the model.
342
+
- `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.
343
+
- `runner_num`: (*Deprecated*) Number of parallel workflow runners.
0 commit comments