Read an integer hyperparameter from the current wandb config.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | key |
Config key. |
||
| integer, | intent(out) | :: | value |
Receives the value (or default_value if absent). |
||
| integer, | intent(in), | optional | :: | default_value |
Fallback when the key is not present. |
Read a double-precision hyperparameter from the current wandb config.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | key | |||
| real(kind=c_double), | intent(out) | :: | value | |||
| real(kind=c_double), | intent(in), | optional | :: | default_value |
Read a single-precision hyperparameter from the current wandb config.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | key | |||
| real(kind=c_float), | intent(out) | :: | value | |||
| real(kind=c_float), | intent(in), | optional | :: | default_value |
Read a string hyperparameter from the current wandb config. The output string value is space-padded to its declared length.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | key | |||
| character(len=*), | intent(inout) | :: | value | |||
| character(len=*), | intent(in), | optional | :: | default_value |