Fortran interface to Weights & Biases (wandb) experiment tracking.
This is the user-facing API module. It re-exports the public symbols from the feature modules in src/wf/:
use wf
call wandb_init(project="my_project", name="run-01")
call wandb_config_set("learning_rate", 0.001d0)
call wandb_config_set("epochs", 100)
do epoch = 1, 100
! ... training ...
call wandb_log("loss", loss_val, step=epoch)
end do
call wandb_finish()
wandb installed (pip install wandb)libwandb_fortran (which itself links Python)