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
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,12 +10,14 @@ global_config:
10
10
total_epochs: 1
11
11
batch_size: 96
12
12
eval_interval: 1000
13
+
eval_on_latest_ckp: true
13
14
```
14
15
15
16
- `mode`: The mode of the experiment, chosen from `both`, `train`, `explore` or `bench`. `both` means both trainer and explorer are launched; `train` means only trainer is launched; `explore` means only explorer is launched; `bench` conducts benchmark evaluation. Default is `both`.
16
17
- `global_config.total_epochs`: The total number of epochs. It should be checked manually.
17
18
- `global_config.batch_size`: The batch size used for training. It should be checked manually.
18
19
- `global_config.eval_interval`: The interval steps between two evaluations. Default is `1000`.
20
+
- `global_config.eval_on_latest_ckp`: Whether to evaluate on only the latest checkpoint or all the checkpoints in the path. Only valid in `bench` mode. Default is `true`.
0 commit comments