From a06aa8f32f9799abf325d1af0351607d218a421a Mon Sep 17 00:00:00 2001 From: Chin-Yun Yu Date: Fri, 23 Feb 2024 06:08:00 +0800 Subject: [PATCH] fix notation error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6f81bf..e058ce0 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ Moreover, we can get $B_{t + i, i}$ by setting $`A_{t,i} := A_{t+i,i}`$, implies ```math \frac{\partial \mathcal{L}}{\partial x_t} = \frac{\partial \mathcal{L}}{\partial y_t} -+ \sum_{i=1}^{T - t} \hat{A}_{t+i,i} \frac{\partial \mathcal{L}}{\partial x_{t+i}}. ++ \sum_{i=1}^{N} \hat{A}_{t+i,i} \frac{\partial \mathcal{L}}{\partial x_{t+i}}. ``` In summary, getting the gradients for the time-varying IIR filter inputs is easy as filtering the backpropagated gradients backwards with the coefficient matrix shifted column-wised.