REVIEW 3 major objections 5 minor 49 references
Graph signal aware decomposition of dynamic networks via latent graphs
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper proposes modeling a dynamic network's adjacency tensor as a weighted sum of a few latent graphs, and claims smooth node signals make that decomposition recover unobserved edges with a provably convergent alternating estimator.
desk verdict A useful signal-aware extension of the authors' ICASSP latent-graph decomposition, but the convergence proof as written does not cover the implemented ADMM steps and the real-data evaluation is partly self-confirming; worth reviewing with major revision. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
At the core is the outer-product decomposition $\boldsymbol{\mathcal A}=\sum_{r=1}^R \boldsymbol A_r \diamond \boldsymbol c_r$ and its time-slice form $\boldsymbol A_{:,:,t}=\sum_r [\boldsymbol c_r]_t \boldsymbol A_r$, in which the dynamic topology is a weighted sum of $R$ latent graph adjacency matrices, with $\diamond$ building the tensor whose $t$-th slice is $[\boldsymbol c_r]_t \boldsymbol A_r$. The workhorse objective is Problem (11), which balances five terms: the masked least-squares fit, the $\ell^1$ sparsity of each latent graph, the signal-smoothness cost $\sum_t\sum_r [\mathbf C]_{t,r}\operatorname{tr}(\boldsymbol A_r \mathbf Z_t)/2$ with $\mathbf Z_t$ encoding pairwise squared signal differences, the orthogonality penalty $\sum_{r\ne \bar r}\operatorname{tr}(\boldsymbol A_r^\top \boldsymbol A_{\bar r})$, and the smoothness penalty $\|\mathbf D\mathbf C\|_F^2$ on the temporal signatures, together with a positivity/degree constraint. Alternating minimization exploits the block multiconvexity of this objective: each $\boldsymbol A_r$ update and the $\mathbf C$ update is strongly convex when the other blocks are fixed, and ADMM performs projected gradient steps, giving the convergence guarantee of Proposition 1 via block-coordinate descent theory.
What would settle it
Run DGD and its no-signal variant NSDGD on a synthetic dynamic network whose node signals are deliberately generated to be non-smooth with respect to the true graph (for example, white noise projected onto the high-pass Laplacian eigenvectors), keeping 20–40 percent of the edges observed; if DGD does not beat NSDGD in masked-edge relative error, the reported gains come from the smoothness prior rather than from the decomposition structure itself.
Extended reading notes
Core claim
Dynamic Graph Decomposition (DGD) models the adjacency tensor $\boldsymbol{\mathcal A}\in\mathbb{R}^{N\times N\times T}$ as $\boldsymbol{\mathcal A}=\sum_{r=1}^R \boldsymbol A_r \diamond \boldsymbol c_r$, so the $t$-th time slice is $\boldsymbol A_{:,:,t}=\sum_{r=1}^R [\boldsymbol c_r]_t\boldsymbol A_r$: each observed topology is a non-negative linear combination of $R$ sparse, undirected latent graphs scaled by their temporal signatures. The estimation problem minimizes a masked least-squares fit to the observed topology plus sparsity on each $\boldsymbol A_r$, a quadratic-variation penalty that rewards smoothness of the observed node signals on the reconstructed topology, a penalty that keeps the supports of different latent graphs disjoint, a temporal-difference penalty on the signatures $\boldsymbol c_r$, and a per-node degree lower bound that prevents trivial zero solutions. Algorithm 1 alternates between $R$ convex $\boldsymbol A_r$-subproblems and one convex $\mathbf C$-subproblem, each solved with the alternating direction method of multipliers; Proposition 1 proves that the sequence converges to a stationary point (a block-coordinate minimizer) under a mild condition on the observed mask and signatures. Experiments on a synthetic network that switches between stochastic block models and on sea-surface temperature, US temperature, and face-to-face contact datasets report that DGD reconstructs masked edges with lower relative error than CPD, BTD, SICA, smooth-graph learning, and the same method without the signal prior, with the largest advantage at low observation percentages.
Load-bearing premise
The load-bearing premise is that the node signals are smooth on the true dynamic graph at every time step, so that connected nodes carry similar values; the paper relies on this assumption both to steer the latent graphs toward correct edges and, for the SeaSurf and USTemp datasets, to construct the ground-truth graphs it evaluates against.
Editorial extensions
If this is right
- With 20–40 percent of the topology observed, DGD reconstructs the unobserved edges with lower relative error than the compared tensor-decomposition, signal-only, and no-signal baselines on the tested datasets.
- Every latent graph is useful: no single component reconstructs the network as well as their combination, because the temporal signatures of different components peak during different time windows.
- The signal prior contributes most when observations are scarce, since the gap between DGD and its no-signal counterpart narrows as the observed fraction of the topology grows.
- The alternating estimator can be run to a stationary point, and in the experiments the objective converges within about twenty iterations for most datasets.
Reading between the lines
- The paper leaves implicit that the recovered latent graphs are a compressed, interpretable summary of the network's evolution; a natural next step is to feed them into link prediction or anomaly detection, tasks the introduction cites as motivations but does not evaluate.
- Because each block subproblem is convex, a streaming extension is plausible: update latent graphs and temporal signatures incrementally as new time slices arrive, which the authors list as future work.
- A testable extension is to run DGD on a dataset with independently recorded edge labels while making the node signals deliberately non-smooth; that would isolate the contribution of the signal prior from the contribution of the latent-graph decomposition itself.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Dynamic Graph Decomposition (DGD), a model in which the time-varying adjacency tensor of a dynamic network is represented as a sum of R latent graph adjacency matrices A_r modulated by temporal signature vectors c_r. The formulation combines a masked least-squares fit of the observed topology with priors for graph sparsity, signal smoothness, non-overlapping latent supports, temporal smoothness, and a minimum-degree constraint. The authors solve the resulting nonconvex problem by alternating minimization, using inner projected-gradient/ADMM loops for the A_r and C blocks, and claim in Proposition 1 that the algorithm converges to a block-coordinate minimizer (stationary point) of the problem. They also present experiments on synthetic and three real datasets, reporting that DGD outperforms tensor-decomposition baselines and signal-only baselines in reconstructing unobserved edges, especially under limited observations.
Significance. If the formulation and convergence claims were correct, the paper would contribute a useful bridge between tensor decomposition and graph signal processing for dynamic network completion: the latent graphs are interpretable, and the signal-smoothness prior offers a principled way to use nodal observations when topology is partially missing. The synthetic experiments with known latent graphs are a good idea, and the comparison against CPD, BTD, SGL, and a no-signal ablation is informative. However, the paper's central technical claims are not currently supported: the convergence proof does not cover the implemented algorithm, and the gradients used in the algorithm do not match the stated Hadamard-masked objective. These issues are load-bearing, because they affect both the theoretical guarantee and the validity of the empirical evaluation. The core decomposition idea is promising and potentially salvageable, which is why I am not recommending rejection outright, but the manuscript requires substantial revision.
major comments (3)
- [§IV-A and Appendix B (Proposition 1)] The proof of Proposition 1 does not apply to Algorithm 1 as implemented. Algorithm 1 updates A_r and C via single projected-gradient steps, Eqs. (17) and (26), inside finite-K inner loops; it does not compute an exact minimizer of the block subproblems (14) and (23). Appendix B cites Theorem 2.3 and Assumptions 1–2 of Xu and Yin [46] and verifies block multiconvexity, convexity of feasible sets, finiteness of minima, and continuity of set maps, but it never verifies the key assumption that each block update is an exact (or sufficiently accurate) minimizer. With finite K, the generated sequence is not a block-coordinate minimization sequence; with K tending to infinity, the paper provides no proof that the projected-gradient ADMM loop converges to the solution of the convex subproblem. Moreover, Proposition 1's phrase 'as K→∞' does not address the outer iterations I→∞. The result therefore does not establish convergence of the sequence actually produced by Algorithm 1 to a stationary point of Problem (11).
- [§III-B, §III-C, and Appendix C (gradients)] The updates in Algorithm 1 do not minimize the objective stated in Eq. (11). For the C-subproblem, the loss in Eq. (22) is the Hadamard-masked term 1/2||M0∘(A_vec − A0 C^T)||_F^2, whose gradient with respect to C is −A0^T(M0∘(A_vec − A0 C^T)). Equation (39) instead uses F(−A_vec^T A0 + C A0^T A0) with F=diag(1^T_{N^2} M0), which is the gradient of a row-weighted full-observation loss 1/2||(A_vec − A0 C^T)F^{1/2}||_F^2 and agrees with the true gradient only when the mask is constant across entries. The same problem appears in Eq. (13), where the per-entry mask is summarized by the scalars 1^T_{N^2}m_t rather than applied entry-wise; the quadratic and cross terms in A_r are therefore not those of Eq. (11). As written, the implemented Algorithm 1 solves a different objective, so the convergence proof, even if repaired, would not apply to the reported algorithm.
- [§V-A (SeaSurf and USTemp ground truth)] The real-data evaluation is partly self-confirming for the signal-smoothness prior. For SeaSurf and USTemp, the ground-truth graphs are constructed by selecting the top edges where the associated signal is smooth, using odd time measurements; DGD's prior g(X,A,C) in Eq. (6) enforces exactly this smoothness property on the estimated topology, and the method is then evaluated on even time measurements. The target is thus generated under the same smoothness model that the method optimizes. This does not make the comparison logically circular, since the held-out even measurements are separate, but it means the experiments cannot test the validity of the smoothness assumption, and it systematically favors DGD over methods that do not use signal smoothness. The claim that DGD recovers the 'true' latent graphs on these datasets should therefore be qualified.
minor comments (5)
- [Eqs. (10) and (37)] The temporal difference matrix D is described as T×(T−1), but it is used as a (T−1)×T operator in ||DC||_F^2 and in D^T D; please correct the dimensions and notation.
- [Eq. (26)] Equation (26) writes C^k = P_{S_A}(...), but the projection should be onto the nonnegative orthant S_C, not onto S_A.
- [Abstract and §V-C] The abstract states that DGD outperforms 'signal-based topology identification methods,' but Figure 8 reports that SGL outperforms DGD on the SwDyn dataset for 10–40% observed topology. The abstract should be qualified to reflect this exception.
- [Algorithm 1] The inner loops use fixed iteration count K and outer loop count I, but the paper does not specify a stopping criterion or convergence tolerance; please state how K and I are chosen in the experiments and how the results depend on them.
- [General] The paper refers to a code repository but does not provide a URL or data-availability statement; since the experimental protocol depends on the exact implementation of the mask and the ADMM loops, a public code link would improve reproducibility.
Circularity Check
Evaluation of SeaSurf and USTemp is partly self-confirming because the ground-truth graphs are built from the same signal-smoothness criterion that the DGD objective optimizes; the core factorization and optimization are not circular.
-
self definitional
[Section V.A, SeaSurf/USTemp ground-truth construction; Eq. (6) signal-smoothness prior]
"Since there is no ground-truth graph, we estimate one for each time window. This estimation is based on half of the available temporal measurements (those corresponding to odd time instants, τ = 1, 3, 5, ...), selecting the top 4N edges where the associated signal is smooth. [...] The signal-incorporating prior g() is the sum of the signal smoothness function for each time instant [...] This promotes the creation of new links from the signals in X that are smooth in the original temporal network when portions of A are not observed due to the mask."
On SeaSurf and USTemp the 'true' unobserved edges are defined as the top edges by signal smoothness, while the DGD objective contains exactly the same smoothness measure: Eq. (6), g(X,A,C)=Σ_t Σ_r [C]_{t,r} tr(A_r Z_t)/2, with the paper stating it 'promotes the creation of new links from the signals in X that are smooth.' Thus the masked entries that DGD is evaluated on are labels produced by the same quadratic-variation criterion the model optimizes. The reported reconstruction accuracy on these two datasets is therefore partially forced and cannot independently validate the graph-signal coupling; the gap over NSDGD is inflated. The synthetic, SwDyn, and Contact evaluations use independently defined ground truths and retain evidentiary value.
full rationale
The optimization derivation is self-contained: (1) is an estimation model, and (11) is a well-posed objective whose variables are estimated by the alternating updates (17)-(19) and (26)-(28); no constant or parameter in the derivation is defined in terms of the target output. The self-citations ([1], [45]) are not load-bearing: [1] is a preliminary conference version and [45] is only a pointer to the definition of block-coordinate minimizer. The main circularity is evaluative. For SeaSurf and USTemp the 'ground-truth' graphs are created by selecting the top edges where the associated signal is smooth, which is precisely the quadratic-variation prior used in Eq. (6) and in the DGD objective (11). Consequently, DGD's reconstruction of masked entries on those datasets is scored against labels generated by the model's own prior, and the reported advantage over the no-signal variant NSDGD is inflated there. The SwDyn, Contact, and synthetic experiments are not constructed this way, so the core factorization and the convergence claim retain independent content. The Proposition 1 proof gap (inner ADMM inexactness versus exact block minimization assumed by [46]) is a correctness concern, not a circular reduction, and is not scored here.
Assumptions & free parameters
free parameters (8)
- number of latent graphs R =
10 for main results
- sparsity weight gamma
- signal smoothness weight delta
- non-overlap weight beta
- temporal smoothness weight mu
- regularization weight rho
- minimum degree zeta
- ADMM and outer iteration counts lambda, lambda_c, K, I
assumptions (5)
- domain assumption Graph signals are smooth on the dynamic graph at each time t
- domain assumption The dynamic adjacency tensor admits a representation as sum_{r=1}^R A_r diamond c_r with R much less than T
- domain assumption Latent graphs satisfy nonnegativity, symmetry, zero diagonal, and degree lower bound
- standard math The block coordinate descent convergence theorem of Xu and Yin [46] applies to the implemented algorithm
- domain assumption Assumption 1: for all r, sum_t [C]_{t,r}^2 1^T m_t > 0
invented entities (1)
-
Latent adjacency matrices A_1,...,A_R
independent evidence
Cite this review
Pith. "Pith review of Graph signal aware decomposition of dynamic networks via latent graphs." pith.science (2026). https://pith.science/paper/QZCT75EM
@misc{pith2026250608519,
author = {Pith},
title = {Pith review of: Graph signal aware decomposition of dynamic networks via latent graphs},
year = {2026},
howpublished = {\url{https://pith.science/paper/QZCT75EM}},
note = {Machine review of arXiv:2506.08519}
}
read the original abstract
Dynamics on and of networks refer to changes in topology and node-associated signals, respectively and are pervasive in many socio-technological systems, including social, biological, and infrastructure networks. Due to practical constraints, privacy concerns, or malfunctions, we often observe only a fraction of the topological evolution and associated signal, which not only hinders downstream tasks but also restricts our analysis of network evolution. Such aspects could be mitigated by moving our attention at the underlying latent driving factors of the network evolution, which can be naturally uncovered via low-rank tensor decomposition. Tensor-based methods provide a powerful means of uncovering the underlying factors of network evolution through low-rank decompositions. However, the extracted embeddings typically lack a relational structure and are obtained independently from the node signals. This disconnect reduces the interpretability of the embeddings and overlooks the coupling between topology and signals. To address these limitations, we propose a novel two-way decomposition to represent a dynamic graph topology, where the structural evolution is captured by a linear combination of latent graph adjacency matrices reflecting the overall joint evolution of both the topology and the signal. Using spatio-temporal data, we estimate the latent adjacency matrices and their temporal scaling signatures via alternating minimization, and prove that our approach converges to a stationary point. Numerical results show that the proposed method recovers individually and collectively expressive latent graphs, outperforming both standard tensor-based decompositions and signal-based topology identification methods in reconstructing the missing network especially when observations are limited.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[46]
Y . Xu and W. Yin, “A block coordinate descent method for regular- ized multiconvex optimization with applications to nonnegative tensor factorization and completion,”SIAM Jour . Imag. Sci., vol. 6, no. 3, pp. 1758–1789, 2013
work page 2013
-
[1]
Tensor graph decomposition for temporal networks,
B. Das and E. Isufi, “Tensor graph decomposition for temporal networks,” inIEEE Intl. Conf. Acoustics, Speech and Signal Proc. (ICASSP). IEEE, 2024, pp. 9901–9905
work page 2024
-
[2]
P. Holme and J. Saram ¨aki, “Temporal networks,”Phy. Rep., vol. 519, no. 3, pp. 97–125, 2012
work page 2012
-
[3]
Time- varying graphs and dynamic networks,
A. Casteigts, P. Flocchini, W. Quattrociocchi, and N. Santoro, “Time- varying graphs and dynamic networks,”Intl. Journ. Par ., Emerg. Distr . Sys., vol. 27, no. 5, pp. 387–408, 2012
work page 2012
-
[4]
Network evolution by different rewiring schemes,
J. Lindquist, J. Ma, P. Van den Driessche, and F. H. Willeboordse, “Network evolution by different rewiring schemes,”Phy. D: Nonl. Phen., vol. 238, no. 4, pp. 370–378, 2009
work page 2009
-
[5]
Random graph models for dynamic networks,
X. Zhang, C. Moore, and M. E. J. Newman, “Random graph models for dynamic networks,”Eur . Phy. Journ. B, vol. 90, pp. 1–14, 2017
work page 2017
-
[6]
V . Kalofolias, A. Loukas, D. Thanou, and P. Frossard, “Learning time varying graphs,” inIEEE Intl. Conf. Acoustics, Speech and Signal Proc. (ICASSP). IEEE, 2017, pp. 2826–2830
work page 2017
-
[7]
Learning time-varying graphs from online data,
A. Natali, E. Isufi, M. Coutino, and G. Leus, “Learning time-varying graphs from online data,”IEEE Open Journ. Signal Proc., vol. 3, pp. 212–228, 2022
work page 2022
Show all 49 references
-
[8]
Sparse online learning with kernels using random features for estimating nonlinear dynamic graphs,
R. T. Money, J. P. Krishnan, and B. Beferull-Lozano, “Sparse online learning with kernels using random features for estimating nonlinear dynamic graphs,”IEEE Trans. Signal Proc., vol. 71, pp. 2027–2042, 2023
2027
-
[9]
Online topology inference from streaming stationary graph signals with partial connectivity information,
R. Shafipour and G. Mateos, “Online topology inference from streaming stationary graph signals with partial connectivity information,”Algo- rithms, vol. 13, no. 9, pp. 228, 2020
2020
-
[10]
Tensor decompositions for identifying directed graph topologies and tracking dynamic networks,
Y . Shen, B. Baingana, and G. B. Giannakis, “Tensor decompositions for identifying directed graph topologies and tracking dynamic networks,” IEEE Trans. Signal Proc., vol. 65, no. 14, pp. 3675–3687, 2017. 13
2017
-
[11]
Tracking switched dynamic network topologies from information cascades,
B. Baingana and G. B. Giannakis, “Tracking switched dynamic network topologies from information cascades,”IEEE Trans. Signal Proc., vol. 65, no. 4, pp. 985–997, 2016
2016
-
[12]
Network inference via the time-varying graphical lasso,
D. Hallac, Y . Park, S. Boyd, and J. Leskovec, “Network inference via the time-varying graphical lasso,” inIntl. Conf. Knowledge Discovery Data Mining, 2017, pp. 205–213
2017
-
[13]
Online network inference from graph-stationary signals with hidden nodes,
A. Buciulea, M. Navarro, S. Rey, S. Segarra, and A. G. Marques, “Online network inference from graph-stationary signals with hidden nodes,”IEEE Intl. Conf. Acoustics, Speech and Signal Proc. (ICASSP), pp. 1–5, 2025
2025
-
[14]
Joint signal recovery and graph learning from incomplete time-series,
A. Javaheri, A. Amini, F. Marvasti, and D. P. Palomar, “Joint signal recovery and graph learning from incomplete time-series,”IEEE Intl. Conf. Acoustics, Speech and Signal Proc. (ICASSP), pp. 13511–13515, 2024
2024
-
[15]
Multiview graph learning with consensus graph,
A. Karaaslanli and S. Aviyente, “Multiview graph learning with consensus graph,”IEEE Trans. Signal Inf. Process. Netw., vol. 11, pp. 161–176, 2025
2025
-
[16]
Online inference for mixture model of streaming graph signals with sparse excitation,
Y . He and H. Wai, “Online inference for mixture model of streaming graph signals with sparse excitation,”IEEE Trans. Signal Proc., vol. 70, pp. 6419–6433, 2022
2022
-
[17]
Graph independent component analysis reveals repertoires of intrinsic network components in the human brain,
B. Park, D. S. Kim, and H. J. Park, “Graph independent component analysis reveals repertoires of intrinsic network components in the human brain,”PloS One, vol. 9, no. 1, pp. 1–10, 2014
2014
-
[18]
Independent component analysis: algorithms and applications,
A. Hyv ¨arinen and E. Oja, “Independent component analysis: algorithms and applications,”Elsevier Neu. Networks, vol. 13, no. 4-5, pp. 411– 430, 2000
2000
-
[19]
Multi- layer network switching rate predicts brain performance,
M. Pedersen, A. Zalesky, A. Omidvarnia, and G. D. Jackson, “Multi- layer network switching rate predicts brain performance,”Proc. Nat. Aca. Sci., vol. 115, no. 52, pp. 13376–13381, 2018
2018
-
[20]
Graph-adaptive semi- supervised tracking of dynamic processes over switching network modes,
Q. Lu, V . N. Ioannidis, and G. B. Giannakis, “Graph-adaptive semi- supervised tracking of dynamic processes over switching network modes,”IEEE Trans. Signal Proc., vol. 68, pp. 2586–2597, 2020
2020
-
[21]
Graph switching dynamical systems,
Y . Liu, S. Magliacane, M. Kofinas, and E. Gavves, “Graph switching dynamical systems,” inIntl. Conf. Machine Learn. (ICML). PMLR, 2023, pp. 21867–21883
2023
-
[22]
Brain network adaptability across task states,
E. N. Davison, K. J. Schlesinger, D. S. Bassett, M. E. Lynall, M. B. Miller, S. T. Grafton, and J. M. Carlson, “Brain network adaptability across task states,”PLoS Comp. Bio., vol. 11, no. 1, pp. 1–14, 2015
2015
-
[23]
Tensor networks for dimensionality reduction and large-scale optimization: Part 1 low-rank tensor decompositions,
A. Cichocki, N. Lee, I. Oseledets, A. H. Phan, Q. Zhao, D. P. Mandic, et al., “Tensor networks for dimensionality reduction and large-scale optimization: Part 1 low-rank tensor decompositions,”F ound. Tren. Mach. Learn., vol. 9, no. 4-5, pp. 249–429, 2016
2016
-
[24]
Tensor decompositions and applications,
T. G. Kolda and B. W. Bader, “Tensor decompositions and applications,” SIAM rev., vol. 51, no. 3, pp. 455–500, 2009
2009
-
[25]
A multilinear singular value decomposition,
L. De Lathauwer, B. De Moor, and J. Vandewalle, “A multilinear singular value decomposition,”SIAM Jour . Matr . Anal. Appl., vol. 21, no. 4, pp. 1253–1278, 2000
2000
-
[26]
Decompositions of a higher-order tensor in block terms—part iii: Alternating least squares algorithms,
L. De Lathauwer and D. Nion, “Decompositions of a higher-order tensor in block terms—part iii: Alternating least squares algorithms,”SIAM Jour . Matr . Anal. Appl., vol. 30, no. 3, pp. 1067–1083, 2008
2008
-
[27]
Detecting the community structure and activity patterns of temporal networks: a non-negative tensor factorization approach,
L. Gauvin, A. Panisson, and C. Cattuto, “Detecting the community structure and activity patterns of temporal networks: a non-negative tensor factorization approach,”PloS One, vol. 9, no. 1, pp. 1–13, 2014
2014
-
[28]
Larc: Learning activity-regularized overlapping communities across time,
A. Gorovits, E. Gujral, E. E. Papalexakis, and P. Bogdanov, “Larc: Learning activity-regularized overlapping communities across time,” in Intl. Conf. Knowledge Discovery Data Mining, 2018, pp. 1465–1474
2018
-
[29]
Beyond rank-1: Discovering rich community structure in multi-aspect graphs,
E. Gujral, R. Pasricha, and E. Papalexakis, “Beyond rank-1: Discovering rich community structure in multi-aspect graphs,” inProc. Web Conf. 2020, 2020, pp. 452–462
2020
-
[30]
Dynamic graph summa- rization: a tensor decomposition approach,
S. Fernandes, H. Fanaee-T, and J. Gama, “Dynamic graph summa- rization: a tensor decomposition approach,”Springer Dat. Min. Know. Discovery, vol. 32, pp. 1397–1420, 2018
2018
-
[31]
Temporal link prediction using matrix and tensor factorizations,
D. M. Dunlavy, T. G. Kolda, and E. Acar, “Temporal link prediction using matrix and tensor factorizations,”ACM Trans. Know. Disc. Data (TKDD), vol. 5, no. 2, pp. 1–27, 2011
2011
-
[32]
Anomaly detection in temporal graph data: An iterative tensor decom- position and masking approach,
A. Sapienza, A. Panisson, J. T. K. Wu, L. Gauvin, and C. Cattuto, “Anomaly detection in temporal graph data: An iterative tensor decom- position and masking approach,” inIntl. Work. Adv. Anal. Learn. Temp. Data, 2015
2015
-
[33]
Identification of dynamic functional brain network states through tensor decomposition,
A. G. Mahyari and S. Aviyente, “Identification of dynamic functional brain network states through tensor decomposition,” inIEEE Intl. Conf. Acoustics, Speech and Signal Proc. (ICASSP). IEEE, 2014, pp. 2099– 2103
2014
-
[34]
A tensor decomposition-based approach for detecting dynamic network states from eeg,
A. G. Mahyari, D. M. Zoltowski, E. M. Bernat, and S. Aviyente, “A tensor decomposition-based approach for detecting dynamic network states from eeg,”IEEE Trans. Biom. Engg., vol. 64, no. 1, pp. 225– 237, 2016
2016
-
[35]
Recursive tensor subspace tracking for dynamic brain network analysis,
A. Ozdemir, E. M. Bernat, and S. Aviyente, “Recursive tensor subspace tracking for dynamic brain network analysis,”IEEE Trans. Signal Inf. Process. Netw., vol. 3, no. 4, pp. 669–682, 2017
2017
-
[36]
A generalized graph regularized non-negative tucker decomposition framework for tensor data representation,
Y . Qiu, G. Zhou, Y . Wang, Y . Zhang, and S. Xie, “A generalized graph regularized non-negative tucker decomposition framework for tensor data representation,”IEEE Tran. Cybern., vol. 52, no. 1, pp. 594–607, 2020
2020
-
[37]
Connecting the Dots: Identifying Network Structure via Graph Signal Processing,
G. Mateos, S. Segarra, A. G. Marques, and A. Ribeiro, “Connecting the Dots: Identifying Network Structure via Graph Signal Processing,” IEEE Signal Proc. Mag., vol. 36, no. 3, pp. 16–43, May 2019
2019
-
[38]
Learning graphs from smooth and graph-stationary signals with hidden variables,
A. Buciulea, S. Rey, and A. G. Marques, “Learning graphs from smooth and graph-stationary signals with hidden variables,”IEEE Trans. Signal Inf. Process. Netw., vol. 8, pp. 273–287, 2022
2022
-
[39]
Joint network topology inference in the presence of hidden nodes,
M. Navarro, S. Rey, A. Buciulea, A. G. Marques, and S. Segarra, “Joint network topology inference in the presence of hidden nodes,”IEEE Trans. Signal Proc., vol. 72, pp. 2710–2725, 2024
2024
-
[40]
Privacy, social network sites, and social relations,
D. J. Houghton and A. N. Joinson, “Privacy, social network sites, and social relations,” inHum. Serv. Netw. Soc., pp. 77–97. Routledge, 2014
2014
-
[41]
Opportunities and challenges of wireless sensor networks in smart grid,
V . C. Gungor, B. Lu, and G. P. Hancke, “Opportunities and challenges of wireless sensor networks in smart grid,”IEEE Tran. Industr . Elec., vol. 57, no. 10, pp. 3557–3564, 2010
2010
-
[42]
Nonparametric bayesian learning of switching linear dynamical systems,
E. Fox, E. Sudderth, M. Jordan, and A. Willsky, “Nonparametric bayesian learning of switching linear dynamical systems,”Advances Neural Inf. Process. Systems, vol. 21, 2008
2008
-
[43]
Learning laplacian matrix in smooth graph signal representations,
X. Dong, D. Thanou, P. Frossard, and P. Vandergheynst, “Learning laplacian matrix in smooth graph signal representations,”IEEE Trans. Signal Proc., vol. 64, no. 23, pp. 6160–6173, 2016
2016
-
[44]
Distributed optimization and statistical learning via the alternating direction method of multipliers,
S. Boyd, N. Parikh, E. Chu, B. Peleato, J. Eckstein, et al., “Distributed optimization and statistical learning via the alternating direction method of multipliers,”F ound. Tren. Mach. Learn., vol. 3, no. 1, pp. 1–122, 2011
2011
-
[45]
Polynomial graphical lasso: Learning edges from gaussian graph-stationary signals,
A. Buciulea, J. Ying, A. G. Marques, and D. P. Palomar, “Polynomial graphical lasso: Learning edges from gaussian graph-stationary signals,” IEEE Trans. Signal Proc., vol. 73, pp. 1153–1167, 2025
2025
-
[47]
How to learn a graph from smooth signals,
V . Kalofolias, “How to learn a graph from smooth signals,” inArt. Intel. Stat.PMLR, 2016, pp. 920–929
2016
-
[48]
Reconstruction of time-varying graph signals via sobolev smoothness,
J. H. Giraldo, A. Mahmood, B. Garcia-Garcia, D. Thanou, and T. Bouw- mans, “Reconstruction of time-varying graph signals via sobolev smoothness,”IEEE Trans. Signal Inf. Process. Netw., vol. 8, pp. 201– 214, 2022
2022
-
[49]
Noaa’s 1981–2010 us climate normals: an overview,
A. Arguez, I. Durre, S. Applequist, R. S. V ose, M. F. Squires, X. Yin, R. R. Heim, and T. W. Owen, “Noaa’s 1981–2010 us climate normals: an overview,”Bul. Amer . Meteor . Soc., vol. 93, no. 11, pp. 1687–1697, 2012
1981
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.