REVIEW 3 major objections 4 minor 156 references
muxvizpy: a Python library for the analysis of multilayer biological networks
T0 review · 3 major / 4 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read The paper claims that muxvizpy, a sparse Python re-implementation of the muxViz multilayer-network catalogue, extends feasible multiplex analysis from roughly 10^7 edges to 10^8–10^9 edges while preserving machine-precision agreement on…
desk verdict A genuinely useful sparse-first Python multilayer network library with careful benchmarks, but the abstract overstates numerical validation at the largest scales. 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
The carrying mechanism is the sparse adjacency-tensor and supra-adjacency-matrix pair. The tensor $\mathcal{M}$ keeps the node and layer dimensions explicit, while its mode-1 unfolding into the block matrix $A$ places intra-layer edges on the diagonal blocks and inter-layer couplings on the off-diagonal blocks; for node-aligned multiplexes with categorical couplings, the coupling blocks reduce to scalar-weighted identity matrices that are stored implicitly. All centrality and path metrics are computed on $A$ without ever densifying it, and the CP/PARAFAC decomposition is run on the tensor itself with an alternating-least-squares algorithm whose per-iteration work scales with the number of nonzeros times the rank, through a sparse matricized-tensor-times-Khatri-Rao product, rather than with the tensor volume $N^2L^2$.
What would settle it
Run the ILU-preconditioned GMRES Katz solver on a Barabási–Albert multiplex with $10^8$ edges and compare its residuals against a restarted high-precision solve of the same resolvent system; if the value error exceeds the reported $10^{-4}$ mean absolute relative error range, the accuracy-at-scale extrapolation fails.
Extended reading notes
Core claim
On its own terms, the paper establishes that redesigning multilayer network analysis around sparse representations, rather than dense matrices, is enough to move the practical ceiling of structural multilayer analysis by more than an order of magnitude without drifting from the established toolkit's results. The fundamental object is the adjacency tensor $\mathcal{M}\in\mathbb{R}^{N\times N\times L\times L}$, whose entry $M_{ij\alpha\beta}$ is the weight of the edge from node $i$ in layer $\alpha$ to node $j$ in layer $\beta$, stored as a COO sparse tensor and unfolded on demand into the CSR supra-adjacency matrix $A\in\mathbb{R}^{NL\times NL}$. On this object the expensive versatility measures reduce to a sparse resolvent solve $(I-\alpha A^\top)x=\mathbf{1}$ for Katz centrality or a dominant-eigenvector problem for PageRank, HITS, and eigenvector centrality, and the library exposes both an exact path (sparse LU, sparse eigensolver) and approximate paths (Neumann fixed-point iteration, ILU-preconditioned GMRES and BiCGSTAB, power iteration) for the same metric. The paper's evidence is that eigenvector, PageRank, hub, and authority centralities complete Erdős–Rényi and Barabási–Albert multiplexes up to roughly $2.5\times10^8$ edges in seconds, that muxViz hits time or memory ceilings near $10^7$ edges, and that wherever both tools finish, paired values agree with Pearson correlation $r=1.0000$ and median mean absolute relative errors between $1.3\times10^{-4}$ and $8.0\times10^{-4}$, with multidegree exact. The Katz case is the telling one: exact LU fails beyond roughly $10^6$ edges on Barabási–Albert networks because of factorisation fill-in, while the ILU-preconditioned Krylov paths keep scaling and reproduce the exact solution; the paper treats muxViz as ground truth and therefore evaluates accuracy only at sizes muxViz can handle.
Load-bearing premise
Numerical accuracy measured on networks of up to about ten million edges, where muxViz can still run, is assumed to extend to the hundred-million-to-billion-edge networks where muxvizpy claims to scale but no reference values exist.
Editorial extensions
If this is right
- Feasible multiplex sizes for the most expensive structural metrics move from muxViz's ceiling near $10^7$ edges to $10^8$–$10^9$ edges, with eigenvector, PageRank, hub, and authority centralities finishing $2.5\times10^8$-edge multiplexes in seconds.
- Katz centrality on scale-free multiplexes no longer forces a memory blow-up: where exact LU exceeds the memory limit beyond about $10^6$ edges, the ILU-preconditioned GMRES and BiCGSTAB paths keep scaling and reproduce the exact solution to about $10^{-4}$ relative error.
- Analyses that have no muxViz counterpart, including percolation, largest viable component, community detection, and CP decomposition, become available in the same API, and the virus–human PPI use case separates oncogenic from non-oncogenic viruses.
- Sparse CP/PARAFAC fitting costs $O(\mathrm{nnz}(\mathcal{M})R)$ per ALS sweep, so tensor decomposition remains practical on sparse biological tensors where dense implementations, which pay the $N^2L^2$ volume cost, cannot run.
- The library's integration with the Python scientific stack lets single-cell, graph deep-learning, and multi-omics pipelines call multilayer analyses without leaving their native ecosystems, which the paper argues lowers the barrier to routine multilayer analysis of biological systems.
Reading between the lines
- Editorial inference: because numerical agreement is measured only where muxViz still runs, the $r=1.0000$ claim is an extrapolation to the $10^8$–$10^9$ regime; a check against a high-precision reference on an ill-conditioned synthetic instance at that scale would close the gap.
- Editorial inference: the paper's function-by-function correspondence table suggests the contribution is a catalogue port plus a solver-selection layer, and that sparse solver-selection layer should transfer directly to temporal networks or hypergraphs that rely on the same resolvent and eigenvector kernels.
- Editorial inference: the documented failure of the Neumann-series path on ill-conditioned instances, with value-level MARE up to $0.13$ at a fixed iteration budget, means users must treat the solver choice as part of the analysis; defaulting to ILU-preconditioned Krylov is the robust choice for scale-free multilayer systems.
- Editorial inference: the oncogenic versus non-oncogenic separation in the biological use case is presented as illustrative, not statistically tested; a permutation or cross-validation step would turn it into a testable biological claim.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces muxvizpy, a Python library for multilayer network analysis that reimplements and extends the muxViz analytical catalogue using sparse tensor/CSR representations and iterative linear-algebra solvers. The authors claim that muxvizpy preserves numerical agreement with muxViz on shared metrics while extending feasible network sizes to approximately 10^8–10^9 edges, and they illustrate the tool on a virus–human protein interaction multiplex use case. The Supplementary Information provides mathematical definitions for all implemented metrics, benchmark protocols, and numerical-accuracy comparisons against muxViz and tensorly.
Significance. If the central claims hold, muxvizpy addresses a real gap: it brings a Python-native, sparse implementation of a broad multilayer analytical catalogue to a community that largely uses Python-based bioinformatics pipelines. The paper's concrete strengths include the public availability of the code under an MIT licence, precise mathematical definitions of all metrics, and strong numerical agreement on the shared benchmark range (Pearson r = 1.0000 with MARE on the order of 10^-4 for versatility measures). The main weakness is that the headline claim of numerical agreement 'at scale' is an extrapolation beyond the sizes at which validation was actually performed, and the approximate solvers that power the large-scale runs already show measurable degradation at the upper end of the validated range.
major comments (3)
- [Results ('Computational benchmarks'); Section S5] The central claim that muxvizpy 'substantially extends the size of multiplex networks that can be analysed while preserving numerical agreement with muxViz' is not supported for the extended size range. Section S5 explicitly states that accuracy is evaluated only for metrics computed by both tools and for network sizes muxViz can handle, which Section S4.2 places near 10^7 edges. Moreover, Section S5.2 reports that the Neumann-series Katz solver, which is one of the approximate paths enabling the large-scale runs, degrades to MARE up to 0.13 and r as low as 0.81 on the largest shared BA instances, while Figure S12 shows the ILU-preconditioned Krylov solvers at MARE around 10^-3 on the largest shared networks. Because the scalability gain for versatility metrics relies on these iterative methods, agreement observed below 10^7 edges does not establish agreement at 10^8–10^9 edges. The phrase 'numerically validated ... at scale' in the abstract overstates the evidence. I recommend either (i) adding a direct accuracy check at larger scales, for example by comparing approximate solvers against the exact solver on moderately large networks and against a tight-tolerance iterative solve on the largest instances, or (ii) revising the abstract and Results to claim scalability and numerical agreement only on the shared range, with the large-scale behaviour presented as a performance claim rather than a validated-accuracy claim.
- [Introduction; 'Design principles'; Section S5, Remark S1] The manuscript states that 'Every metric ships with a numerical test against the corresponding muxViz output' and that 'All metrics are numerically validated against muxViz on synthetic benchmarks,' but the validation evidence in Section S5 covers only a subset of metrics. Table S1 lists muxViz comparisons for eigenvector, Katz, PageRank, hub, authority, multidegree, global clustering, and the two information-theoretic metrics, while Remark S1 explicitly states that k-core, global edge overlap, local clustering, CP decomposition, vertex percolation, and the largest viable/intersection components have no muxViz accuracy reference and are validated by unit tests on small networks, by comparison with tensorly, or through the biological use case. The blanket statements in the Introduction and Design principles should be corrected to distinguish metrics with direct muxViz validation from those validated by other means.
- [Section S5.1; Table S1] The information-theoretic metrics are validated against muxViz only on Barabási–Albert multiplexes because, as stated in Section S5.1, 'muxViz fails on the ER instances.' Since the abstract and Introduction claim numerical validation on both Erdős–Rényi and Barabási–Albert synthetic multiplex networks, this constitutes a gap in the validation matrix. Either the ER comparisons should be added (if the failure can be circumvented, e.g., by running muxViz on smaller ER instances), or the text should explicitly state that information-theoretic agreement was established on BA networks only.
minor comments (4)
- [Algorithm S2 (Section S3.2)] The sparse eigensolver path is labelled the 'exact path,' but ARPACK-based eigs is itself an iterative method with a user-specified tolerance; the label 'direct' or 'default eigensolver' would be more accurate and would avoid confusion with the exact LU factorisation described for Katz centrality.
- [Section S5.2; Figure S12] The Neumann-series panel reports r = 1.0000 despite MARE = 0.13, which shows that Pearson correlation can be insensitive to systematic relative shifts; the paper should also report a rank correlation or a residual scatter in this context, since the abstract and Results cite r primarily.
- [References, Section S5.3] The reference for the Hungarian assignment algorithm is a commercial educational website (BYJU'S); a standard primary reference (e.g., Kuhn, H. W., 1955) would be more appropriate for a journal.
- [Graphical abstract and Figure 1 caption] The text 'Handles 105+ edges' in the graphical abstract and the phrase 'with L layers' in the Figure 1 caption are unclear; the former should be written as '10^5+' and the latter should specify the actual number of layers used in the benchmarks.
Circularity Check
No significant circularity: the central claims are implementation-level agreement and scalability, both benchmarked directly, with the at-scale accuracy limitation explicitly disclosed.
full rationale
The paper's derivation chain is not circular. Its central claims are that muxvizpy reimplements the muxViz analytical catalogue with sparse data structures, that it agrees numerically with muxViz on metrics and network sizes both tools can handle, and that it scales to larger networks where muxViz fails. None of these claims is a prediction derived from fitted parameters: the metrics are defined from standard mathematical definitions in Additional File S2, and no parameter is fitted to the validation data. The numerical validation is a direct, code-level comparison against muxViz outputs on byte-for-byte shared edge lists, which is an external and reproducible benchmark even though a co-author is also an author of muxViz. The paper explicitly scopes its accuracy claim: Section S5 states that 'muxViz is treated as ground truth; accuracy is therefore evaluated only for metrics computed by both tools and for network sizes muxViz can handle,' and the Discussion repeats this limitation. The large-scale claims are computational scalability claims measured directly as wall-clock time and peak memory, not inferred from the accuracy comparison. Approximate solvers are checked against exact solvers where exact solvers can run, and the degraded Neumann-series accuracy is reported honestly in Section S5.2 rather than concealed. The biological use case is illustrative and cites the authors' prior work, but its biological classification is not used as evidence for the library's numerical correctness. No equation in the paper reduces to its own input, no 'prediction' is a renamed fit, and no uniqueness theorem from the authors is invoked to forbid alternative implementations. The only caveat is that agreement at the 10^8-10^9 edge scale is not directly validated, but that is an explicitly disclosed limitation and an extrapolation risk, not circularity.
Assumptions & free parameters
free parameters (3)
- Katz attenuation gap epsilon =
small, not specified
- PageRank damping factor =
0.85 (default)
- CP decomposition rank R =
10 in benchmarks
assumptions (6)
- domain assumption Mathematical definitions of multilayer metrics (tensor formalism, versatility aggregation from De Domenico et al.) are correct and complete.
- standard math Perron-Frobenius theorem guarantees existence and uniqueness of dominant eigenvector for non-negative irreducible matrices.
- standard math The sparse CSR/COO representations and mode-1 unfolding in Eq. (S2) correctly encode the multilayer adjacency tensor.
- domain assumption muxViz is a valid ground-truth implementation for the shared metrics.
- ad hoc to paper Numerical accuracy measured at moderate sizes extends to larger networks where muxViz cannot compute reference values.
- domain assumption Benchmark networks (Erdos-Renyi and Barabasi-Albert) are representative of the structure of biological multilayer networks.
Cite this review
Pith. "Pith review of muxvizpy: a Python library for the analysis of multilayer biological networks." pith.science (2026). https://pith.science/paper/T6OZBHKH
@misc{pith2026260807344,
author = {Pith},
title = {Pith review of: muxvizpy: a Python library for the analysis of multilayer biological networks},
year = {2026},
howpublished = {\url{https://pith.science/paper/T6OZBHKH}},
note = {Machine review of arXiv:2608.07344}
}
abstract
Biological systems are inherently multilayered: the same entities---genes, cells, or bacterial species---participate simultaneously in qualitatively distinct types of interactions, each carrying complementary information that no single relational view can capture. Analysing such systems with single-layer tools, or by collapsing layers into a monoplex projection, systematically discards inter-layer dependencies and can yield misleading conclusions about centrality, community structure, and robustness. The multilayer network formalism addresses, and \texttt{muxViz} established one of the first comprehensive toolkits for its structural analysis, but its R-only interface and dense data structures limit applicability to large biological networks. We introduce \textit{muxvizpy}, a Python library that reimplements and extends the \texttt{muxViz} analytical catalogue with a sparse linear-algebra stack built on SciPy and PyTorch. Muxvizpy exposes seven categories through a unified, composable API and is numerically validated against \texttt{muxViz} on synthetic Erd\H{o}s--R\'enyi and Barab\'asi--Albert multiplex networks while substantially reducing peak memory and wall-clock time at scale. We illustrate its applicability on a virus--human protein-interaction multiplex in which computing some structural analysis was unfeasible. \\[2pt] muxvizpy is freely available under the MIT licence at https://github.com/CoMuNeLab/MuxVizPy. Mathematical definitions of all implemented metrics are provided in the Additional File.
Figures
Reference graph
Works this paper leans on
-
[1]
Neural Krylov Iteration for Accelerating Linear System Solving , url =
Luo, Jian and Wang, Jie and Wang, Hong and Dong, Huanshuo and Geng, Zijie and Chen, Hanzhu and Kuang, Yufei , booktitle =. Neural Krylov Iteration for Accelerating Linear System Solving , url =. doi:10.52202/079017-4086 , editor =
-
[2]
bench: High Precision Timing of
Hester, Jim and Vaughan, Davis , year =. bench: High Precision Timing of
-
[3]
Journal of Complex Networks , volume=
Multilayer network science: theory, methods, and applications , author=. Journal of Complex Networks , volume=. 2026 , publisher=
2026
-
[4]
The European Physical Journal Special Topics , volume=
Modeling the multi-layer nature of the European Air Transport Network: Resilience and passengers re-scheduling under random failures , author=. The European Physical Journal Special Topics , volume=. 2013 , publisher=
2013
-
[5]
inferential community detection in networks: Pitfalls, myths and half-truths , author=
Descriptive vs. inferential community detection in networks: Pitfalls, myths and half-truths , author=. 2023 , publisher=
2023
-
[6]
New Journal of Physics , volume=
Opinion competition dynamics on multiplex networks , author=. New Journal of Physics , volume=. 2017 , publisher=
2017
-
[7]
Moroni, Claudio and Monticone, Pietro , title =. 2023 , publisher =. doi:10.21105/joss.05116 , institution =
-
[8]
Multilayer networks , journal =
Kivel. Multilayer networks , journal =. 2014 , volume =
2014
Show all 156 references
-
[9]
Nature Physics , year =
De Domenico, Manlio , title =. Nature Physics , year =
-
[10]
and Arenas, Alex , title =
De Domenico, Manlio and Porter, Mason A. and Arenas, Alex , title =. Journal of Complex Networks , year =
-
[11]
infomeasure:
B. infomeasure:. arXiv preprint arXiv:2505.14696 , year =. 2505.14696 , archivePrefix =
-
[12]
A Comparative Analysis of Multilayer Network Software , year =
Kjellstr. A Comparative Analysis of Multilayer Network Software , year =
-
[13]
Kivel. pymnet:. Journal of Open Source Software , year =
-
[14]
2019 IEEE EMBS International Conference on Biomedical & Health Informatics (BHI) , pages=
Centroid of Age Neighborhoods: A Generalized Approach to Estimate Biological Age , author=. 2019 IEEE EMBS International Conference on Biomedical & Health Informatics (BHI) , pages=. 2019 , organization=
2019
-
[15]
arXiv preprint arXiv:1409.0473 , year=
Neural machine translation by jointly learning to align and translate , author=. arXiv preprint arXiv:1409.0473 , year=
-
[16]
Journal of the American College of Cardiology , volume=
Cardiorespiratory fitness and mortality in healthy men and women , author=. Journal of the American College of Cardiology , volume=. 2018 , publisher=
2018
-
[17]
Proceedings of the IEEE International Conference on Computer Vision , pages=
Unified deep supervised domain adaptation and generalization , author=. Proceedings of the IEEE International Conference on Computer Vision , pages=
-
[18]
2013 , publisher=
ACSM's guidelines for exercise testing and prescription , author=. 2013 , publisher=
2013
-
[19]
2012 , publisher=
Machine learning: A probabilistic perspective , author=. 2012 , publisher=
2012
-
[20]
IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=
3D convolutional neural networks for human action recognition , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2012 , publisher=
2012
-
[21]
Advances in Neural Information Processing Systems , pages=
Imagenet classification with deep convolutional neural networks , author=. Advances in Neural Information Processing Systems , pages=
-
[22]
Nature Reviews Genetics , volume=
DNA methylation-based biomarkers and the epigenetic clock theory of ageing , author=. Nature Reviews Genetics , volume=. 2018 , publisher=
2018
-
[23]
Aging (Albany NY) , volume=
Quantitative characterization of biological age and frailty based on locomotor activity records , author=. Aging (Albany NY) , volume=. 2018 , publisher=
2018
-
[24]
Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages=
Face aging with identity-preserved conditional generative adversarial networks , author=. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages=
-
[25]
Nature , volume=
Deep learning , author=. Nature , volume=. 2015 , publisher=
2015
-
[26]
Fine-Grained Age Estimation in the wild with Attention
Zhang, Ke and Liu, Na and Yuan, Xingfang and Guo, Xinyao and Gao, Ce and Zhao, Zhenbing , journal=. Fine-Grained Age Estimation in the wild with Attention
-
[27]
Deep learning for health informatics , author=. IEEE. 2016 , publisher=
2016
-
[28]
Briefings in
Deep learning for healthcare: review, opportunities and challenges , author=. Briefings in. 2017 , publisher=
2017
-
[29]
Centroid of Age Neighborhoods: A New Approach to Estimate Biological Age , author=. IEEE. 2019 , publisher=
2019
-
[30]
Scientific
Deep Learning using Convolutional LSTM estimates Biological Age from Physical Activity , author=. Scientific. 2019 , publisher=
2019
-
[31]
Advances in
Generative adversarial nets , author=. Advances in
-
[32]
IEEE/ACM Transactions on Computational Biology and Bioinformatics , year=
Predicting DNA methylation states with hybrid information based deep-learning model , author=. IEEE/ACM Transactions on Computational Biology and Bioinformatics , year=
-
[33]
Scientific
PEDLA: predicting enhancers with a deep learning-based algorithmic framework , author=. Scientific. 2016 , publisher=
2016
-
[34]
NeuroImage , volume=
Predicting brain age with deep learning from raw imaging data results in a reliable and heritable biomarker , author=. NeuroImage , volume=. 2017 , publisher=
2017
-
[35]
Journal of Biomedical Informatics , volume=
Predicting age by mining electronic medical records with deep learning characterizes differences between chronological and physiological age , author=. Journal of Biomedical Informatics , volume=. 2017 , publisher=
2017
-
[36]
Part 1: A new approach to calculating biological age , author=
Improving the precision of biological age determinations. Part 1: A new approach to calculating biological age , author=. Experimental Gerontology , volume=. 1989 , publisher=
1989
-
[37]
Biogerontology , volume=
On the use of regression analysis for the estimation of human biological age , author=. Biogerontology , volume=. 2000 , publisher=
2000
-
[38]
BioRxiv , pages=
Phenotypic Age: A novel signature of mortality and morbidity risk , author=. BioRxiv , pages=. 2018 , publisher=
2018
-
[39]
American Journal of Epidemiology , volume=
Eleven telomere, epigenetic clock, and biomarker-composite quantifications of biological aging: do they measure the same thing? , author=. American Journal of Epidemiology , volume=. 2017 , publisher=
2017
-
[40]
Population Specific Biomarkers of Human Aging: A Big Data Study Using
Mamoshina, Polina and Kochetov, Kirill and Putin, Evgeny and Cortese, Franco and Aliper, Alexander and Lee, Won-Suk and Ahn, Sung-Min and Uhn, Lee and Skjodt, Neil and Kovalchuk, Olga and others , journal=. Population Specific Biomarkers of Human Aging: A Big Data Study Using....
2018
-
[41]
Bobrov, Eugene and Georgievskaya, Anastasia and Kiselev, Konstantin and Sevastopolsky, Artem and Zhavoronkov, Alex and Gurov, Sergey and Rudakov, Konstantin and Tobar, Maria del Pilar Bonilla and Jaspers, S. Photo. Aging (Albany NY) , volume=. 2018 , publisher=
2018
-
[42]
Ageing Research Reviews , year=
Artificial intelligence for aging and longevity research: Recent advances and perspectives , author=. Ageing Research Reviews , year=
-
[43]
The Journal of Machine Learning Research , volume=
Dropout: A simple way to prevent neural networks from overfitting , author=. The Journal of Machine Learning Research , volume=. 2014 , publisher=
2014
-
[44]
2016 , journal=
Incorporating Nesterov Momentum into Adam , author=. 2016 , journal=
2016
-
[45]
2018 , url =
, title =. 2018 , url =
2018
-
[46]
Informativeness of indices of blood pressure, obesity and serum lipids in relation to ischaemic heart disease mortality:
M. Informativeness of indices of blood pressure, obesity and serum lipids in relation to ischaemic heart disease mortality:. European Journal of Epidemiology , volume=. 2011 , publisher=
2011
-
[47]
arXiv preprint arXiv:1412.6980 , year=
Adam: A method for stochastic optimization , author=. arXiv preprint arXiv:1412.6980 , year=
-
[48]
Journal of the American Statistical Association , volume=
Nonparametric estimation from incomplete observations , author=. Journal of the American Statistical Association , volume=. 1958 , publisher=
1958
-
[49]
, author=
The descriptive epidemiology of selected physical activities and body weight among adults trying to lose weight: the Behavioral Risk Factor Surveillance System survey, 1989. , author=. International Journal of Obesity and Related Metabolic Disorders: Journal of the Internation...
1989
-
[50]
, author=
The demography of physical activity. , author=. Physical Activity, Fitness, and Health: International Proceedings and Consensus Statement , pages=. 1994 , publisher=
1994
-
[51]
Medicine and Science in Sports and Exercise , volume=
National estimates of physical activity among older adults , author=. Medicine and Science in Sports and Exercise , volume=
-
[52]
The Journals of Gerontology Series A: Biological Sciences and Medical Sciences , volume=
Physical activity in aging: changes in patterns and their relationship to health and function , author=. The Journals of Gerontology Series A: Biological Sciences and Medical Sciences , volume=. 2001 , publisher=
2001
-
[53]
Worldwide trends in insufficient physical activity from 2001 to 2016: a pooled analysis of 358 population-based surveys with 1
Guthold, Regina and Stevens, Gretchen A and Riley, Leanne M and Bull, Fiona C , journal=. Worldwide trends in insufficient physical activity from 2001 to 2016: a pooled analysis of 358 population-based surveys with 1. 2018 , publisher=
2001
-
[54]
Proceedings of the
Understanding the difficulty of training deep feedforward neural networks , author=. Proceedings of the
-
[55]
American Journal of Epidemiology , volume=
Time-to-event analysis of longitudinal follow-up of a survey: choice of the time-scale , author=. American Journal of Epidemiology , volume=. 1997 , publisher=
1997
-
[56]
1984 , publisher=
Analysis of survival data , author=. 1984 , publisher=
1984
-
[57]
Expert opinion on biological therapy , volume=
Human models of aging and longevity , author=. Expert opinion on biological therapy , volume=. 2008 , publisher=
2008
-
[58]
Proceedings of the National Academy of Sciences , volume=
Quantification of biological aging in young adults , author=. Proceedings of the National Academy of Sciences , volume=. 2015 , publisher=
2015
-
[59]
Journals of Gerontology Series A: Biomedical Sciences and Medical Sciences , volume=
Heterogeneity of human aging and its assessment , author=. Journals of Gerontology Series A: Biomedical Sciences and Medical Sciences , volume=. 2016 , publisher=
2016
-
[60]
Modeling the rate of senescence:
Levine, Morgan E , journal=. Modeling the rate of senescence:. 2012 , publisher=
2012
-
[61]
Mechanisms of Ageing and Development , volume=
Assessment of biological age by principal component analysis , author=. Mechanisms of Ageing and Development , volume=. 1988 , publisher=
1988
-
[62]
Medical Informatics , volume=
Evaluation of biological age and physical age by multiple regression analysis , author=. Medical Informatics , volume=. 1982 , publisher=
1982
-
[63]
A novel strategy for forensic age prediction by
Xu, Cheng and Qu, Hongzhu and Wang, Guangyu and Xie, Bingbing and Shi, Yi and Yang, Yaran and Zhao, Zhao and Hu, Lan and Fang, Xiangdong and Yan, Jiangwei and others , journal=. A novel strategy for forensic age prediction by. 2015 , publisher=
2015
-
[64]
IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
Human age estimation using bio-inspired features , author=. IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , pages=. 2009 , organization=
2009
-
[65]
IEEE Transactions on Multimedia , volume=
Human age estimation with regression on discriminative aging manifold , author=. IEEE Transactions on Multimedia , volume=. 2008 , publisher=
2008
-
[66]
2013 , publisher=
Horvath, Steve , journal=. 2013 , publisher=
2013
-
[67]
Molecular Psychiatry , year=
Brain age predicts mortality , author=. Molecular Psychiatry , year=
-
[68]
Aging Cell , volume=
Biomarker signatures of aging , author=. Aging Cell , volume=. 2017 , publisher=
2017
-
[69]
2017 , publisher=
Piccirilli, Marco and Doretto, Gianfranco and Adjeroh, Donald , journal=. 2017 , publisher=
2017
-
[70]
Computer Science Letters , volume=
Automatic age estimation by hand photos , author=. Computer Science Letters , volume=
-
[71]
Comparison of performance-based measures among native
Aoyagi, Kiyoshi and Ross, Philip D and Nevitt, Michael C and Davis, James W and Wasnich, Richard D and Hayashi, Takuo and Takemoto, Tai-ichiro , journal=. Comparison of performance-based measures among native. 2001 , publisher=
2001
-
[72]
Nutrition and handgrip strength of older adults in rural
Chilima, Dorothy M and Ismail, Suraiya J , journal=. Nutrition and handgrip strength of older adults in rural. 2001 , publisher=
2001
-
[73]
Prediction equations for handgrip strength in healthy
Vaz, M and Hunsberger, S and Diffey, B , journal=. Prediction equations for handgrip strength in healthy. 2002 , publisher=
2002
-
[74]
A study on hand grip strength in female labourers of
Koley, Shyamal and Kaur, Navdeep and Sandhu, JS , journal=. A study on hand grip strength in female labourers of
-
[75]
International Conference on Artificial Neural Networks , pages=
Sch. International Conference on Artificial Neural Networks , pages=. 1997 , organization=
1997
-
[76]
Jolliffe, Ian , year=
-
[77]
Handgrip strength and mortality in older
Al Snih, Soham and Markides, Kyriakos S and Ray, Laura and Ostir, Glenn V and Goodwin, James S , journal=. Handgrip strength and mortality in older. 2002 , publisher=
2002
-
[78]
American Journal of Respiratory and Critical Care Medicine , volume=
Acquired weakness, handgrip strength, and mortality in critically ill patients , author=. American Journal of Respiratory and Critical Care Medicine , volume=. 2008 , publisher=
2008
-
[79]
Handgrip strength and mortality in the oldest old population:
Ling, Carolina HY and Taekema, Diana and de Craen, Anton JM and Gussekloo, Jacobijn and Westendorp, Rudi GJ and Maier, Andrea B , journal=. Handgrip strength and mortality in the oldest old population:. 2010 , publisher=
2010
-
[80]
PLoS ONE , volume=
Epigenetic predictor of age , author=. PLoS ONE , volume=. 2011 , publisher=
2011
-
[81]
2006 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR'06) , volume=
Modeling age progression in young faces , author=. 2006 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR'06) , volume=. 2006 , organization=
2006
-
[82]
Physiological Basis of Aging and Geriatrics , pages=
Cellular senescence and cell death , author=. Physiological Basis of Aging and Geriatrics , pages=
-
[83]
European Journal of Cancer , volume=
The biology of replicative senescence , author=. European Journal of Cancer , volume=. 1997 , publisher=
1997
-
[84]
Normal oxidative damage to mitochondrial and nuclear
Richter, Christoph and Park, Jeen-Woo and Ames, Bruce N , journal=. Normal oxidative damage to mitochondrial and nuclear. 1988 , publisher=
1988
-
[85]
Antioxidants and Redox Signaling , volume=
The free radical theory of aging , author=. Antioxidants and Redox Signaling , volume=. 2003 , publisher=
2003
-
[86]
Clinical Interventions in Aging , volume=
The aging process and potential interventions to extend life expectancy , author=. Clinical Interventions in Aging , volume=. 2007 , publisher=
2007
-
[87]
Biomarker profiling by nuclear magnetic resonance spectroscopy for the prediction of all-cause mortality:
Fischer, Krista and Kettunen, Johannes and W. Biomarker profiling by nuclear magnetic resonance spectroscopy for the prediction of all-cause mortality:. PLoS Med , volume=. 2014 , publisher=
2014
-
[88]
Age estimation:
Ritz-Timme, S and Cattaneo, C and Collins, MJ and Waite, ER and Sch. Age estimation:. International Journal of Legal Medicine , volume=. 2000 , publisher=
2000
-
[89]
Measuring human functional age:
Anstey, Kaarin J and Lord, Stephen R and Smith, Glen A , journal=. Measuring human functional age:. 1996 , publisher=
1996
-
[90]
Bone and Mineral , volume=
Development of bone mass and bone density of the spine and femoral neck—a prospective study of 65 children and adolescents , author=. Bone and Mineral , volume=. 1993 , publisher=
1993
-
[91]
A new body shape index predicts mortality hazard independently of
Krakauer, Nir Y and Krakauer, Jesse C , journal=. A new body shape index predicts mortality hazard independently of. 2012 , publisher=
2012
-
[92]
IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=
Automatic age estimation based on facial aging patterns , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2007 , publisher=
2007
-
[93]
J Forensic Odontostomatol , volume=
A review of the most commonly used dental age estimation techniques , author=. J Forensic Odontostomatol , volume=
-
[94]
Age synthesis and estimation via faces:
Fu, Yun and Guo, Guodong and Huang, Thomas S , journal=. Age synthesis and estimation via faces:. 2010 , publisher=
2010
-
[95]
machine performance , author=
Demographic estimation from face images: Human vs. machine performance , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2015 , publisher=
2015
-
[96]
NA-Advances in Consumer Research Volume 17 , year=
The antecedents of cognitive age , author=. NA-Advances in Consumer Research Volume 17 , year=
-
[97]
Journal of Health and Social Behavior , pages=
The social stratification of aging and health , author=. Journal of Health and Social Behavior , pages=. 1994 , publisher=
1994
-
[98]
International Journal of Legal Medicine , volume=
Criteria for age estimation in living individuals , author=. International Journal of Legal Medicine , volume=. 2008 , publisher=
2008
-
[99]
Self-assessment of health:
Maddox, George L and Douglass, Elizabeth B , journal=. Self-assessment of health:. 1973 , publisher=
1973
-
[100]
Age, sex, social class, and quality of family interaction as determinants of adolescents' future orientation:
Nurmi, Jari-Erik , journal=. Age, sex, social class, and quality of family interaction as determinants of adolescents' future orientation:. 1987 , publisher=
1987
-
[101]
2015 , publisher=
Rahman, Syed Ashiqur and Adjeroh, Donald , journal=. 2015 , publisher=
2015
-
[102]
PLoS ONE , volume=
Measuring the speed of aging across population subgroups , author=. PLoS ONE , volume=. 2014 , publisher=
2014
-
[103]
Hand Grip Strength:
Massy-Westropp, Nicola M and Gill, Tiffany K and Taylor, Anne W and Bohannon, Richard W and Hill, Catherine L , journal=. Hand Grip Strength:. 2011 , publisher=
2011
-
[104]
Xia, Baiqiang and Amor, Boulbaba Ben and Daoudi, Mohamed and Drira, Hassen , booktitle=. Can 3. 2014 , organization=
2014
-
[105]
, author=
A study on automatic age estimation using a large database. , author=. ICCV , pages=
-
[106]
IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2014 , pages=
Spectral anomaly detection using graph-based filtering for wireless sensor networks , author=. IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2014 , pages=. 2014 , organization=
2014
-
[107]
Neural Computation , volume=
Laplacian eigenmaps for dimensionality reduction and data representation , author=. Neural Computation , volume=. 2003 , publisher=
2003
-
[108]
Mechanisms of Ageing and Development , volume=
A new approach to the concept and computation of biological age , author=. Mechanisms of Ageing and Development , volume=. 2006 , publisher=
2006
-
[109]
Archives of Gerontology and Geriatrics , volume=
Biological age—what is it and can it be measured? , author=. Archives of Gerontology and Geriatrics , volume=. 2003 , publisher=
2003
-
[110]
Age estimation from face images:
Han, Hu and Otto, Christina and Jain, Anubhav K , booktitle=. Age estimation from face images:. 2013 , organization=
2013
-
[111]
Norsk Regnesentral , volume=
Age estimation in youths and young adults , author=. Norsk Regnesentral , volume=. 2012 , publisher=
2012
-
[112]
An empirical comparative study on biological age estimation algorithms with an application of
Cho, Il Haeng and Park, Kyung S and Lim, Chang Joo , journal=. An empirical comparative study on biological age estimation algorithms with an application of. 2010 , publisher=
2010
-
[113]
Deep biomarkers of human aging:
Putin, Evgeny and Mamoshina, Polina and Aliper, Alexander and Korzinkin, Mikhail and Moskalev, Alexey and Kolosov, Alexey and Ostrovskiy, Alexander and Cantor, Charles and Vijg, Jan and Zhavoronkov, Alex , journal=. Deep biomarkers of human aging:
-
[114]
Age estimation of faces:
Rhodes, Matthew G , journal=. Age estimation of faces:. 2009 , publisher=
2009
-
[115]
Alley, Thomas R , year=
-
[116]
2011 , url =
, title =. 2011 , url =
2011
-
[117]
2002 , url =
, title =. 2002 , url =
2002
-
[118]
Bone age assessment methods:
Mughal, Arsalan Manzoor and Hassan, Nuzhat and Ahmed, Anwar , journal=. Bone age assessment methods:. 2014 , publisher=
2014
-
[119]
A simple technique for age estimation in adult corpses:
Zerilli, A and Baccino, E and Lamendin, H and Tavernier, JC and Humbert, JF and Nossintchouk, RM , journal=. A simple technique for age estimation in adult corpses:. 1992 , publisher=
1992
-
[120]
2007 , publisher=
Basak, Debasish and Pal, Srimanta and Patranabis, Dipak Chandra , journal=. 2007 , publisher=
2007
-
[121]
Classification and
Liaw, Andy and Wiener, Matthew , journal=. Classification and
-
[122]
Forensic Science International , volume=
Accuracy of age estimation of radiographic methods using developing teeth , author=. Forensic Science International , volume=. 2006 , publisher=
2006
-
[123]
IEEE Transactions on Information Forensics and Security , volume=
Gait-based human age estimation , author=. IEEE Transactions on Information Forensics and Security , volume=. 2010 , publisher=
2010
-
[124]
2015 IEEE Winter Conference on Applications of Computer Vision , pages=
Deeply-learned feature for age estimation , author=. 2015 IEEE Winter Conference on Applications of Computer Vision , pages=. 2015 , organization=
2015
-
[125]
IEEE Workshop on Applications of Computer Vision , volume=
Locally adjusted robust regression for human age estimation , author=. IEEE Workshop on Applications of Computer Vision , volume=
-
[126]
Epigenetic age predictions based on buccal swabs are more precise in combination with cell type-specific
Eipel, Monika and Mayer, Felix and Arent, Tanja and Ferreira, Marcelo RP and Birkhofer, Carina and Gerstenmaier, Uwe and Costa, Ivan G and Ritz-Timme, Stefanie and Wagner, Wolfgang , journal=. Epigenetic age predictions based on buccal swabs are more precise in combination wit...
-
[127]
Computer Vision and Pattern Recognition (CVPR), 2011 IEEE Conference on , pages=
Simultaneous dimensionality reduction and human age estimation via kernel partial least squares regression , author=. Computer Vision and Pattern Recognition (CVPR), 2011 IEEE Conference on , pages=. 2011 , organization=
2011
-
[128]
Proceedings of the 17th ACM International Conference on Multimedia , pages=
Web image mining towards universal age estimator , author=. Proceedings of the 17th ACM International Conference on Multimedia , pages=. 2009 , organization=
2009
-
[129]
IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=
Facial age estimation by learning from label distributions , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2013 , publisher=
2013
-
[130]
The CAESAR project:
Robinette, Kathleen M and Daanen, Hans and Paquet, Eric , booktitle=. The CAESAR project:. 1999 , organization=
1999
-
[131]
Information Forensics and Security (WIFS), 2010 IEEE International Workshop on , pages=
Predictability and correlation in human metrology , author=. Information Forensics and Security (WIFS), 2010 IEEE International Workshop on , pages=. 2010 , organization=
2010
-
[132]
Biometrics: Theory, Applications and Systems (BTAS), 2012 IEEE Fifth International Conference on , pages=
Predicting gender and weight from human metrology using a copula model , author=. Biometrics: Theory, Applications and Systems (BTAS), 2012 IEEE Fifth International Conference on , pages=. 2012 , organization=
2012
-
[133]
Journal of the Royal Statistical Society
An analysis of transformations , author=. Journal of the Royal Statistical Society. Series B (Methodological) , pages=. 1964 , publisher=
1964
-
[134]
Advances in Neural Information Processing Systems , pages=
Convolutional LSTM network: A machine learning approach for precipitation nowcasting , author=. Advances in Neural Information Processing Systems , pages=
-
[135]
Neural Computation , volume=
Long short-term memory , author=. Neural Computation , volume=. 1997 , publisher=
1997
-
[136]
Scientific Reports , volume=
Extracting biological age from biomedical data via deep learning: too much of a good thing? , author=. Scientific Reports , volume=. 2018 , publisher=
2018
-
[137]
2017 , url =
, title =. 2017 , url =
2017
-
[138]
Permutation importance:
Altmann, Andr. Permutation importance:. Bioinformatics , volume=. 2010 , publisher=
2010
-
[139]
Scientific
Forensic age prediction for saliva samples using methylation-sensitive high resolution melting: exploratory application for cigarette butts , author=. Scientific. 2017 , publisher=
2017
-
[140]
Entropy , volume=
Unraveling the Network Signatures of Oncogenicity in Virus--Human Protein--Protein Interactions , author=. Entropy , volume=. 2025 , publisher=
2025
-
[141]
PLOS Computational Biology , volume=
Multiscale networks in multiple sclerosis , author=. PLOS Computational Biology , volume=. 2024 , publisher=
2024
-
[142]
SIAM review , volume=
Tensor decompositions and applications , author=. SIAM review , volume=. 2009 , publisher=
2009
-
[143]
Journal of Machine Learning Research , volume=
Tensorly: Tensor learning in python , author=. Journal of Machine Learning Research , volume=
-
[144]
Physical Review X , volume=
Mathematical formulation of multilayer networks , author=. Physical Review X , volume=. 2013 , publisher=
2013
-
[145]
Nature Communications , volume=
Ranking in interconnected multilayer networks reveals versatile nodes , author=. Nature Communications , volume=. 2015 , publisher=
2015
-
[146]
Science , volume=
Community structure in time-dependent, multiscale, and multiplex networks , author=. Science , volume=. 2010 , publisher=
2010
-
[147]
Psychometrika , volume=
A new status index derived from sociometric analysis , author=. Psychometrika , volume=. 1953 , publisher=
1953
-
[148]
2006 , publisher=
Google's PageRank and Beyond: The Science of Search Engine Rankings , author=. 2006 , publisher=
2006
-
[149]
New Journal of Physics , volume=
Structure of triadic relations in multiplex networks , author=. New Journal of Physics , volume=. 2015 , publisher=
2015
-
[150]
Nature Physics , volume=
The physics of spreading processes in multilayer networks , author=. Nature Physics , volume=. 2016 , publisher=
2016
-
[151]
Physical Review X , volume=
Spectral entropies as information-theoretic tools for complex network comparison , author=. Physical Review X , volume=. 2016 , publisher=
2016
-
[152]
Physical review letters , volume=
Avalanche collapse of interdependent networks , author=. Physical review letters , volume=. 2012 , publisher=
2012
-
[153]
2003 , edition=
Iterative Methods for Sparse Linear Systems , author=. 2003 , edition=
2003
-
[154]
Hungarian Method , author =
-
[155]
A generalized minimal residual algorithm for solving nonsymmetric linear systems , author=. SIAM J. Sci. Stat. Comput , volume=
-
[156]
SIAM Journal on scientific and Statistical Computing , volume=
Bi-CGSTAB: A fast and smoothly converging variant of Bi-CG for the solution of nonsymmetric linear systems , author=. SIAM Journal on scientific and Statistical Computing , volume=. 1992 , publisher=
1992
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.