eval_checkpoint_manager
optimus_dl.modules.checkpoint.eval_checkpoint_manager
¶
EvaluationCheckpointManager
¶
Manages saving and loading of mid-evaluation state.
This manager handles the storage of metrics (meters) and dataloader states during long-running evaluations, allowing them to be resumed if interrupted. These checkpoints are separate from the main training checkpoints.
Source code in optimus_dl/modules/checkpoint/eval_checkpoint_manager.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | |
cleanup(iteration=None, exclude_iteration=None)
¶
Remove evaluation checkpoints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iteration
|
int | None
|
If provided, only remove checkpoints for this specific iteration. |
None
|
exclude_iteration
|
int | None
|
If provided, remove all checkpoints EXCEPT for this iteration.
Only used when |
None
|
Source code in optimus_dl/modules/checkpoint/eval_checkpoint_manager.py
get_eval_checkpoints_dir(iteration)
¶
Construct the directory path for evaluation checkpoints at a specific iteration.
load_iteration_state(iteration, eval_name, group_name, eval_iter, collective=None)
¶
Load the evaluation state for a specific rank if it exists.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iteration
|
int
|
Current training iteration. |
required |
eval_name
|
str
|
Name of the evaluation dataset/task. |
required |
group_name
|
str
|
Name of the metrics group. |
required |
dataloader
|
The dataloader to restore state to. |
required | |
collective
|
Collective | None
|
Distributed collective. |
None
|
Returns:
| Type | Description |
|---|---|
int
|
The number of iterations already processed, or 0 if no checkpoint exists. |
Source code in optimus_dl/modules/checkpoint/eval_checkpoint_manager.py
save_iteration_state(iteration, eval_name, dataloader_state, group_name, collective=None, eval_iterations_processed=0)
¶
Save the current evaluation state for a specific rank.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iteration
|
int
|
Current training iteration. |
required |
eval_name
|
str
|
Name of the evaluation dataset/task. |
required |
dataloader_state
|
dict[str, Any]
|
state_dict of the dataloader. |
required |
group_name
|
str
|
Name of the metrics group (e.g., 'eval/dataset'). |
required |
collective
|
Collective | None
|
Distributed collective. |
None
|
eval_iterations_processed
|
int
|
Number of evaluation batches processed so far. |
0
|