parameters property

  1. @override
List<Tensor> get parameters
override

Provides the three trainable parameters of the RNN to the optimizer.

Implementation

@override
List<Tensor> get parameters => [W_xh, W_hh, b_h];