Optimisation¤
The zodiax.optimisation module contains functions to provide a simple interface to apply Optax optimisers to individual leaves!
zodiax.optimisation
¤
debug_nan_check(grads)
¤
Checks for NaN values in the gradients and triggers a breakpoint if any are found.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
grads
|
PyTree
|
The gradients to be checked for NaN values. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
grads |
PyTree
|
The gradients. |
Source code in zodiax/optimisation.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | |
decompose(matrix, hermitian=True, normalise=False)
¤
Returns: eigvals: (D,) array sorted descending eigvecs: (D, D) array where each ROW is an eigenvector
Source code in zodiax/optimisation.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | |
delay(lr, start, length=1)
¤
Delays the learning rate by starting at 0 and linearly increasing to the specified learning rate over a specified number of steps.
Source code in zodiax/optimisation.py
94 95 96 97 98 99 | |
eigen_projection(fmat=None, cov=None)
¤
Projects the parameter space into the an orthonormal basis
TODO: develop docs more
Source code in zodiax/optimisation.py
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 | |
map_optimisers(params, optimisers, strict=False)
¤
Maps optimiser from a dictionary of optax optimisers to a dictionary of parameters.
TODO: Develop docs more
Source code in zodiax/optimisation.py
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 | |
zero_nan_check(grads)
¤
Replaces any NaN values in the gradients and with zeros.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
grads
|
PyTree
|
The gradients to be checked for NaN values. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
grads |
PyTree
|
The gradients with NaN values replaced by zeros. |
Source code in zodiax/optimisation.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |