Skip to content

Commit

Permalink
Commit with tutorial 3 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jwzhanggy committed Dec 2, 2024
1 parent 722a3e9 commit 83613cf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/tutorials/beginner/module/interdependence_function.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,13 @@ learnable parameter vector $\mathbf{w} \in {R}^{l_{\xi}}$ with length $l_{\xi} =

As introduced in the RPN 2 paper, the parameter matrix $\mathbf{W}$ can also be fabricated with the reconciliation
functions, which can reduce the number of required parameters in the interdependence function, e.g., low-rank or lphm
reconciliations. An example of the low-rank parameterized bilinear interdependence function is shown below.
reconciliations. An example of the low-rank parameterized bilinear interdependence function is shown below:

\begin{equation}
\xi(\mathbf{X} | \mathbf{w}) = \mathbf{X}^\top \left( \mathbf{W}_p \mathbf{W}_q^\top \right) \mathbf{X} = (\mathbf{X}^\top \mathbf{W}_p)(\mathbf{X}^\top \mathbf{W}_q)^\top = \mathbf{A} \in R^{m \times m},
\end{equation}

where $\mathbf{W}_p \in R^{b \times r}$ and $\mathbf{W}_q \in R^{b \times r}$ denote two low-rank sub-matrices (of rank $r$).

=== "Instance Interdependence Function in Python"
```python linenums="1"
Expand Down

0 comments on commit 83613cf

Please sign in to comment.