In a time series prediction task using a GRU (Gated Recurrent Unit) network, the GRU processes input sequences where each input is represented by a 2-dimensional vector (xt∈R2). The GRU uses the following formulas for the hidden state and output at time step t:
itots~tsty^t=σ(Wist−1+Uixt+bi)=σ(Wost−1+Uoxt+bo)=tanh(Uxt+W(ot⊙st−1)+b)=(1−it)⊙st−1+it⊙s~t=Vht+c
where ⊙ denotes element-wise multiplication. Assume that ht∈R3 and y^t∈R2.
Based on the above data, answer the given subquestions.
Given that the GRU processes sequences of length 6 (T = 6), what is the total number of parameters (including biases) in the network?