API Reference: Training¶
Standard Trainer¶
auditml.training.trainer.Trainer
¶
Standard (non-private) training loop.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Module
|
The network to train. |
required |
train_loader
|
DataLoader
|
DataLoader for training data. |
required |
val_loader
|
DataLoader
|
DataLoader for validation/test data. |
required |
optimizer
|
Optimizer
|
PyTorch optimizer instance. |
required |
criterion
|
Module | None
|
Loss function (default |
None
|
device
|
device | str
|
Device to train on. |
'cpu'
|
max_grad_norm
|
float | None
|
Optional gradient clipping max-norm. |
None
|
Source code in src/auditml/training/trainer.py
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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | |
train(epochs: int = 20, patience: int = 10, checkpoint_dir: str | Path | None = None) -> dict[str, list[float]]
¶
Run the full training loop.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
epochs
|
int
|
Maximum number of training epochs. |
20
|
patience
|
int
|
Stop early if validation loss has not improved for this many
consecutive epochs. Set to |
10
|
checkpoint_dir
|
str | Path | None
|
If provided, save the best model checkpoint here. |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
The training |
Source code in src/auditml/training/trainer.py
evaluate(loader: DataLoader) -> dict[str, float]
¶
Evaluate model on loader.
Returns:
| Type | Description |
|---|---|
dict
|
|
Source code in src/auditml/training/trainer.py
save_checkpoint(directory: Path, epoch: int, metrics: dict[str, float] | None = None) -> Path
¶
Save model weights, optimizer state, and metadata.
Returns the path to the saved .pt file.
Source code in src/auditml/training/trainer.py
load_checkpoint(path: str | Path) -> dict[str, Any]
¶
Load a checkpoint and restore model/optimizer state.
Returns the checkpoint dict (contains epoch, metrics, etc.).
Source code in src/auditml/training/trainer.py
DP Trainer¶
auditml.training.dp_trainer.DPTrainer
¶
Bases: Trainer
Differentially-private training loop powered by Opacus.
Wraps the standard Trainer with Opacus's PrivacyEngine.
After make_private() is called the training loop automatically
clips per-sample gradients and injects calibrated noise.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Module
|
The model to train (must be Opacus-compatible — call
|
required |
train_loader
|
DataLoader
|
Training data loader. |
required |
val_loader
|
DataLoader
|
Validation data loader. |
required |
optimizer
|
Optimizer
|
PyTorch optimizer (will be wrapped by Opacus). |
required |
dp_config
|
DPConfig
|
Differential privacy parameters. |
required |
criterion
|
Module | None
|
Loss function. |
None
|
device
|
device | str
|
Torch device. |
'cpu'
|
Source code in src/auditml/training/dp_trainer.py
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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | |
make_private() -> None
¶
Attach the Opacus PrivacyEngine to model/optimizer/loader.
After this call the training loop will enforce DP guarantees.
This method must be called before train().
The method uses either noise_multiplier (if set in config)
or calibrates noise from (epsilon, delta, epochs).
Source code in src/auditml/training/dp_trainer.py
train(epochs: int = 20, patience: int = 10, checkpoint_dir: str | Path | None = None) -> dict[str, list[float]]
¶
Run the DP training loop.
If make_private() has not been called yet, it is called
automatically before training begins.
Returns the training history dict (same as Trainer.train())
with an additional "epsilon" key.
Source code in src/auditml/training/dp_trainer.py
get_epsilon() -> float
¶
Return the current cumulative privacy budget (epsilon).
Returns:
| Type | Description |
|---|---|
float
|
The epsilon spent so far. Returns 0.0 if training has not started or no steps have been taken. |
Source code in src/auditml/training/dp_trainer.py
save_checkpoint(directory: Path, epoch: int, metrics: dict[str, float] | None = None) -> Path
¶
Save checkpoint with DP-specific metadata.
Extends the parent to include epsilon in the saved metrics.