Returns the current value of the weights of the optimizer. Returns: A list of numpy arrays.
(self)
| 135 | K.batch_set_value(weight_value_tuples) |
| 136 | |
| 137 | def get_weights(self): |
| 138 | """Returns the current value of the weights of the optimizer. |
| 139 | |
| 140 | Returns: |
| 141 | A list of numpy arrays. |
| 142 | """ |
| 143 | return K.batch_get_value(self.weights) |
| 144 | |
| 145 | def get_config(self): |
| 146 | config = {} |
no outgoing calls