Learn Before
Concept
Autoregressive model formula
L: denote the lower-triangular portion of the adjacency matrix A
L[v1, :] denote the row of L corresponding to node v1
assume that the rows of L are indexed by nodes v1, ..., v|V|
due to the lower-triangular nature of L, we will have that L[vi, vj] = 0, ∀j > i, meaning that we only need to be concerned with generating the first i entries for any row L[vi, :] because the rest will be zeros
when we generate row L[vi, :], we condition on all the previous generated rows L[vj, :] with j < i

0
1
Updated 2022-08-07
Tags
Science
Natural language generation
Data Science