darts.legacy_training.optuna_sweep_smp¶
Create an optuna sweep and run it on the specified cuda device, or continue an existing sweep.
If sweep_id
already exists in sweep_db
, the sweep will be continued. Otherwise, a new sweep will be created.
If a cuda_device
is specified, run an agent on this device. If None, do nothing.
You can specify the frequency on how often logs will be written and validation will be performed.
- log_every_n_steps
specifies how often train-logs will be written. This does not affect validation.
- check_val_every_n_epoch
specifies how often validation will be performed.
This will also affect early stopping.
- plot_every_n_val_epochs
specifies how often validation samples will be plotted.
Since plotting is quite costly, you can reduce the frequency. Works similar like early stopping.
In epochs, this would be check_val_every_n_epoch * plot_every_n_val_epochs
.
This will use cross-validation.
Example
In one terminal, start a sweep:
$ rye run darts sweep-smp --config-file /path/to/sweep-config.toml
... # Many logs
Created sweep with ID 123456789
... # More logs from spawned agent
In another terminal, start an a second agent:
Parameters:
-
train_data_dir
(pathlib.Path
) –Path to the training data directory.
-
sweep_config
(pathlib.Path
) –Path to the sweep yaml configuration file. Must contain a valid wandb sweep configuration. Hyperparameters must contain the following fields:
model_arch
,model_encoder
,augment
,gamma
,batch_size
. Please read https://docs.wandb.ai/guides/sweeps/sweep-config-keys for more information. -
n_trials
(int
, default:10
) –Number of runs to execute. Defaults to 10.
-
sweep_db
(str | None
, default:None
) –Path to the optuna database. If None, a new database will be created.
-
sweep_id
(str | None
, default:None
) –The ID of the sweep. If None, a new sweep will be created. Defaults to None.
-
n_folds
((int, optinoal)
, default:5
) –Number of folds in cross-validation. Max 5. Defaults to 5.
-
n_randoms
(int
, default:3
) –Number of repetitions with different random-seeds. First 3 are always "42", "21" and "69" for better default comparibility with rest of this pipeline. Rest are pseudo-random generated beforehand, hence always equal. Defaults to 5.
-
artifact_dir
(pathlib.Path
, default:pathlib.Path('lightning_logs')
) –Path to the training output directory. Will contain checkpoints and metrics. Defaults to Path("lightning_logs").
-
max_epochs
(int
, default:100
) –Maximum number of epochs to train. Defaults to 100.
-
log_every_n_steps
(int
, default:10
) –Log every n steps. Defaults to 10.
-
check_val_every_n_epoch
(int
, default:3
) –Check validation every n epochs. Defaults to 3.
-
plot_every_n_val_epochs
(int
, default:5
) –Plot validation samples every n epochs. Defaults to 5.
-
num_workers
(int
, default:0
) –Number of Dataloader workers. Defaults to 0.
-
device
(int | str | None
, default:None
) –The device to run the model on. Defaults to None.
-
wandb_entity
(str | None
, default:None
) –Weights and Biases Entity. Defaults to None.
-
wandb_project
(str | None
, default:None
) –Weights and Biases Project. Defaults to None.
-
model_arch
(str
, default:'Unet'
) –Model architecture to use. Defaults to "Unet".
-
model_encoder
(str
, default:'dpn107'
) –Encoder to use. Defaults to "dpn107".
-
augment
(bool
, default:True
) –Weather to apply augments or not. Defaults to True.
-
learning_rate
(float
, default:0.001
) –Learning Rate. Defaults to 1e-3.
-
gamma
(float
, default:0.9
) –Multiplicative factor of learning rate decay. Defaults to 0.9.
-
focal_loss_alpha
(float
, default:None
) –Weight factor to balance positive and negative samples. Alpha must be in [0...1] range, high values will give more weight to positive class. None will not weight samples. Defaults to None.
-
focal_loss_gamma
(float
, default:2.0
) –Focal loss power factor. Defaults to 2.0.
-
batch_size
(int
, default:8
) –Batch Size. Defaults to 8.
Source code in darts/src/darts/legacy_training/sweep.py
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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 |
|