REVIEW 4 major objections 10 minor 40 references
Predicting Anthropometric Body Composition Variables Using 3D Optical Imaging and Machine Learning
T0 review · 4 major / 10 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that 3D optical body scans plus machine learning can predict appendicular lean mass and bone mineral density with about 8% RMSE, and that a semi-supervised p-Laplacian model holds BMD error near 10% using only 10% of…
desk verdict A credible supervised benchmark for 3D-optical body composition, but the semi-supervised p-Laplacian claim is untestable as reported—no same-label-rate supervised baseline. 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 central object is the game-theoretic p-Laplacian regression model, solved by the tug-of-war dynamic programming principle. Patients are vertices of a k-nearest-neighbor graph, edge weights decay with the Euclidean distance between z-score-normalized biomarker vectors, and the predicted value at each unlabeled vertex solves $L_p u = 0$ subject to labeled values on the training vertices; the parameter $p$ interpolates between a weighted random-walk average ($p=2$) and a min-max tug-of-war as $p \to \infty$. This graph-based label propagation carries the argument: when biomarker similarity implies target similarity, the labeled patients' values flow through the graph to unlabeled patients, which is what allows the model to work with a 10% training set.
What would settle it
Permute the training labels among patients on the same k-NN graph and re-run the 10% training p-Laplacian; if RMSE stays near 10% for BMD, the graph similarity is not carrying the prediction. A second check is to hold out an entire scanner type or age group and see whether the 10% training errors grow beyond the reported values.
Extended reading notes
Core claim
The central claim is that p-Laplacian regression on a patient similarity graph can propagate body-composition labels from a small labeled set to the rest of the population, and that this propagation is accurate enough to be clinically useful. In the paper's own terms, the authors show that a graph whose nodes are patients and whose edges encode similarity of 3D-derived biomarkers supports the hypothesis that similar patients have similar ALM, BFP, and BMD values. With 10% of the data labeled, the model predicts ALM within about 13% RMSE, BMD within about 10% RMSE, and BFP within about 20% RMSE; with 80% labeled, supervised SVR and LSSVR do better on all three targets. The paper concludes that DXA could potentially be replaced when estimating ALM and BMD, pending further validation on larger datasets.
Load-bearing premise
The method assumes that patients with similar 3D body measurements have nearly the same ALM, BFP, and BMD values, so that labels can flow across the similarity graph; if that smoothness fails, the 10% training results have no basis.
Editorial extensions
If this is right
- If the results replicate on larger cohorts, 3D optical imaging plus supervised SVR/LSSVR could replace DXA for routine ALM and BMD estimation, cutting cost and scan time.
- The p-Laplacian model's roughly 10% BMD error at 10% labeled data suggests that body-composition prediction can proceed with only a small curated labeled set, easing data-privacy and annotation bottlenecks.
- BFP remains the hardest target across every model, indicating that the current 44-biomarker set carries weaker signal for adipose distribution than for muscle and bone.
- The reported convergence of p-Laplacian RMSE as $p$ grows justifies treating large-$p$ behavior as a stable regime for this regression method.
- Training sex-stratified models generally improves accuracy for ALM and BFP, so population stratification is a built-in component of the method.
Reading between the lines
- A straightforward external test would be to run the same pipeline on a cohort scanned with a different 3D device, since the paper used three internal scanner types, to see whether the similarity graph transfers across hardware.
- Because the graph weights all 44 biomarkers equally, weighting edges by target-specific correlations, which the paper itself floats as future work, would likely lift BFP accuracy given its top-ten correlations of only 0.4 to 0.6.
- The relative RMSE metric means that a 10% error on BMD is a small absolute error on a variable whose mean is near 1.03 g/cm²; clinicians would need absolute comparisons against DXA repeatability before judging replacement.
- If the smoothness hypothesis is the true driver, deliberately violating it, for example requiring the model to extrapolate to an age or body-mass range absent from the labeled set, should produce a measurable accuracy cliff.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper compares supervised machine-learning algorithms and a semi-supervised p-Laplacian regression model for predicting ALM, BFP, and BMD from 44 anthropometric biomarkers extracted from 3D optical images. After cleaning, 515 records are split into combined, male, and female subsets. All supervised models (linear/polynomial regularized regressions, SVR, LSSVR, random forest, XGBoost, MLP) are evaluated with five-fold cross-validation at an 80/20 training/test split. The p-Laplacian model is evaluated at training proportions of 80%, 50%, 33%, 25%, 20%, 10%, and 5%, using either all 44 biomarkers or the top-10 correlated biomarkers. The paper reports best RMSEs around 6-8% for ALM and BMD and about 11% for BFP with SVR/LSSVR at 80% training, and about 10-13% for ALM, 9-10% for BMD, and 14-25% for BFP with the p-Laplacian at 10% training, depending on the dataset. It concludes that the p-Laplacian model is promising in data-constrained healthcare settings.
Significance. If the reported accuracies hold, the paper would provide a useful benchmark for replacing DXA-based body-composition measurement with 3D imaging plus machine learning, which is practically relevant because DXA is costly and time-consuming. The empirical coverage is broad: seven model families, three targets, three population partitions, and seven training proportions for the semi-supervised method. The paper also makes the graph-smoothness hypothesis explicit and reports errors separately for male, female, and combined data, which is helpful. However, the central data-constrained claim is not yet supported: the p-Laplacian results at 5-50% training are never compared with any supervised model at the same label budget, and the selection of both biomarkers and hyperparameters appears to use test-fold information. The paper does not ship code or an external validation set, so reproducibility rests on the textual description and the GraphLearning package. The supervised benchmark results themselves are plausible and internally consistent.
major comments (4)
- [Section 6; Section 8.5; Tables 7-15] The headline claim that the p-Laplacian model is 'promising in a data-constrained environment' is not tested against any supervised method at the same label rate. All supervised models are fixed at an 80-20 split (Section 6, Tables 13-15), while the p-Laplacian is evaluated at 80%, 50%, 33%, 25%, 20%, 10%, and 5% training (Tables 7-12). The p-Laplacian's 10%-training RMSEs (e.g., 13.21% for ALM and 9.65% for BMD on the combined data) are therefore never compared with, say, a linear SVR or ridge model trained on the same roughly 52 labeled subjects. Because the ALM biomarkers have correlations above 0.9 (Table 4), a simple linear model might match or beat those numbers at the same label budget. Please add supervised baselines at the same training percentages, using identical fold splits and hyperparameter-selection protocols, and report the mean and standard deviation over the 10 runs.
- [Section 4.3; Section 8.5; Tables 4-6, 10-12] The top-10 biomarker subsets for p-Laplacian-2 are selected using correlations computed on the full dataset (Section 4.3), before the cross-validation splits are made. This means test-fold information enters the graph construction for the results in Tables 10-12, making the p-Laplacian-2 RMSEs optimistically biased. The biomarker selection must be performed inside each training fold, or the authors should demonstrate that the results are insensitive to this choice by recomputing Tables 10-12 with training-fold-only selection.
- [Section 8.5; Tables 7-12] The hyperparameter protocol for the p-Laplacian results is unclear, and the presentation suggests test-set selection. The text states that the models were run 'for different combinations of p and k for a fixed Training %' and Figure 6 plots the 'lowest RMSE' for each training percentage; Tables 7-12 report the 'optimal' p and k with the corresponding RMSE. If p and k are chosen by minimizing RMSE on the test folds, all reported semi-supervised errors are optimistic. Please specify a nested validation scheme (e.g., an inner hold-out or a separate validation split) and report the RMSE at fixed, pre-specified parameters as well as the selected-parameter RMSE.
- [Section 5; Section 7.1] It is not stated whether the StandardScaler/z-score normalization is fitted on the training fold only or on the entire dataset before splitting. If the scaler is fitted on all data, label information from the test patients is used in preprocessing for every model, including the p-Laplacian graph. Please state explicitly that all preprocessing statistics are computed from training folds only, and if that is not currently the case, rerun the experiments with a proper per-fold scaling pipeline.
minor comments (10)
- [Section 8.5] The description of the modified K-fold scheme is ambiguous because K=5 is used both for the standard 80/20 split and for the modified one-fold-training scheme, which would give 20% training rather than 80%; please clarify which protocol produced each column in Tables 7-12.
- [Section 7.1] Immediately after Eq. (2), the text calls eta a 'nondecreasing function' after defining it as a nonnegative decreasing function and choosing eta(t)=exp(-t^2); correct this contradiction.
- [Section 8.1; Figures 11-13] The cross-references to the figures are inconsistent; for example, 'Figure 12d' is cited, but the figure is a nine-subplot grid with no 'd' label described. Please renumber or describe the subplots precisely.
- [Tables 13 and 15] The 'Regression' rows in Tables 13 and 15 list parameter names without specifying which regression variant (traditional, Ridge, or Bayesian) was used for each dataset; please complete these rows.
- [Table 15 caption] The caption reads 'Optimal Parameters and corresponding parameters'; it should read 'Optimal Parameters and corresponding RMSEs'.
- [Abstract; Section 9] Please use 'DXA' consistently instead of alternating with 'DEXA'.
- [Section 8.4] The MLP description is incomplete; please report the number of hidden layers and units, the learning rate, and any regularization so that the neural-network results are reproducible.
- [Abstract] The claim that 'This paper is the first to demonstrate the application of a p-Laplacian model for regression' is too strong, since reference [10] already develops p-Laplacian regression; rephrase as the first application to body-composition prediction from 3D optical biomarkers.
- [Section 9] The statement that DXA 'could be potentially replaced in the future to estimate ALM and BMD' goes beyond the evidence, because the reported RMSEs are not compared with DXA measurement error or with clinical decision thresholds; please soften the conclusion and add these caveats.
- [Sections 8.2 and 8.5] There are typos in the text, including 'kernrel' in 'linear kernrel' (Section 8.2) and 'p-Lapacian' in the Section 8.5 heading; these should be corrected.
Circularity Check
Headline p-Laplacian errors are minima over hyperparameters selected on the same test folds; otherwise the paper is an empirical benchmark with no definitional circularity.
-
fitted input called prediction
[Section 8.5, Figure 6, Tables 7-12; abstract headline numbers]
"For optimization, we implemented p-Laplacian-1 and p-Laplacian-2 for different combinations of p and k for a fixed Training %. ... Figure 6 demonstrates how the lowest RMSE p-Laplacian-1 and p-Laplacian-2 yielded changes with Training %."
The abstract's headline errors (~13% ALM, ~10% BMD, ~20% BFP at 10% training) are the 'lowest RMSE' entries in Tables 7-12, reached after sweeping p and k at each Training %. The same K-fold test folds both select the optimal p,k and produce the reported RMSE, and no inner validation split is described. Consequently the reported accuracy is by construction the minimum over the searched grid; the low-label 'prediction' is a test-set-fitted best case, statistically forced rather than an unbiased estimate. The p-Laplacian predictions are still real held-out estimates, but the headline performance figures are partly constructed by the selection procedure.
full rationale
The paper's derivation chain is mostly an empirical benchmark: ALM/BFP/BMD predictions are held-out estimates, and the graph-smoothness hypothesis in Section 7.1 is an assumption tested by the data, not a definition of the target. The self-citations ([9], [10], [11], [12]) provide the model, software, and low-label-rate theorems; these are real external results and are used to explain trends, not to establish the accuracy numbers, so they are not load-bearing circularity. The one construction issue is in Section 8.5: the low-label RMSEs in the abstract and Tables 7-12 are the 'lowest RMSE' over a p,k grid evaluated on the same K-fold test folds that selected them. Since no inner validation loop is described, these headline numbers are minima by construction and are optimistically selected; this makes the central data-constrained claim partially self-fulfilling. Separately, p-Laplacian-2's top-10 features are chosen from full-data target correlations (Section 4.3), a leakage that is secondary because the headline figures are essentially p-Laplacian-1. The missing 10%-label supervised baseline is a comparison gap, not a circularity.
Assumptions & free parameters
free parameters (8)
- p (p-Laplacian exponent) =
2 to 10 depending on target, dataset, and training% (Tables 7-12)
- k (k-NN graph neighbors) =
10 to 60 across tables
- epsilon (edge weight bandwidth in Eq. 2) =
not reported
- SVR hyperparameters C and epsilon =
e.g., ALM Male C=50, eps=0.7 (Table 13)
- LSSVR hyperparameters C and gamma =
e.g., BFP Combined C=250, gamma=0.001 (Table 14)
- RF and XGBoost n_estimators and max_depth =
n up to 50, d up to 25 for RF; n up to 35, d=5 for XGB
- NN epochs and batch size =
epochs 50-400, batch size 16
- Top-10 biomarker subset for p-Laplacian-2 =
different 10 features per target per sex (Tables 4-6)
assumptions (6)
- standard math Game-theoretic p-Laplacian with DPP (Eq. 4) solves Lp u = 0 on the k-NN graph
- standard math Low-label-rate consistency results for p-Laplacian semi-supervised learning ([12])
- domain assumption Graph smoothness: patients with similar 44-dimensional biomarker vectors have similar target values
- domain assumption DXA target measurements are accurate ground truth
- domain assumption Listwise deletion of missing rows leaves an unbiased sample
- ad hoc to paper Choice of eta(t)=exp(-t^2) and k-NN graph construction
Cite this review
Pith. "Pith review of Predicting Anthropometric Body Composition Variables Using 3D Optical Imaging and Machine Learning." pith.science (2026). https://pith.science/paper/QN77NXMZ
@misc{pith2026250614815,
author = {Pith},
title = {Pith review of: Predicting Anthropometric Body Composition Variables Using 3D Optical Imaging and Machine Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/QN77NXMZ}},
note = {Machine review of arXiv:2506.14815}
}
abstract
Accurate prediction of anthropometric body composition variables, such as Appendicular Lean Mass (ALM), Body Fat Percentage (BFP), and Bone Mineral Density (BMD), is essential for early diagnosis of several chronic diseases. Currently, researchers rely on Dual-Energy X-ray Absorptiometry (DXA) scans to measure these metrics; however, DXA scans are costly and time-consuming. This work proposes an alternative to DXA scans by applying statistical and machine learning models on biomarkers (height, volume, left calf circumference, etc) obtained from 3D optical images. The dataset consists of 847 patients and was sourced from Pennington Biomedical Research Center. Extracting patients' data in healthcare faces many technical challenges and legal restrictions. However, most supervised machine learning algorithms are inherently data-intensive, requiring a large amount of training data. To overcome these limitations, we implemented a semi-supervised model, the $p$-Laplacian regression model. This paper is the first to demonstrate the application of a $p$-Laplacian model for regression. Our $p$-Laplacian model yielded errors of $\sim13\%$ for ALM, $\sim10\%$ for BMD, and $\sim20\%$ for BFP when the training data accounted for 10 percent of all data. Among the supervised algorithms we implemented, Support Vector Regression (SVR) performed the best for ALM and BMD, yielding errors of $\sim 8\%$ for both, while Least Squares SVR performed the best for BFP with $\sim 11\%$ error when trained on 80 percent of the data. Our findings position the $p$-Laplacian model as a promising tool for healthcare applications, particularly in a data-constrained environment.
Figures
Figures from the paper (7 more)
Reference graph
Works this paper leans on
-
[1]
A survey on data-efficient algorithms in big data era
Amina Adadi. A survey on data-efficient algorithms in big data era. Journal of Big Data , 8:24, 2021. doi: 10.1186/ s40537-021-00419-9. URL https://doi. org/10.1186/s40537-021-00419-9
-
[2]
Shara S.A. Alves, Elene F. Ohata, Navar M.M. Nascimento, Jo˜ ao W. M. De Souza, Gabriel B. Holanda, Luiz Lannes Loureiro, and Pedro Pedrosa Re- bou¸ cas Filho. Gender-based approach to estimate the human body fat per- centage using machine learning. In 2021 International Joint Conference on Neural Networks (IJCNN) , pages 1–8, 2021. doi: 10.1109/IJCNN5238...
arXiv 2021
-
[3]
Support Vector Regression, pages 67–80
Mariette Awad and Rahul Khanna. Support Vector Regression, pages 67–80. Apress, 17 Berkeley, CA, 2015. ISBN 978-1-4302- 5990-9. doi: 10.1007/978-1-4302-5990-9
-
[4]
URL https://doi.org/10.1007/ 978-1-4302-5990-9_4
-
[5]
S. Azadifar and A. Ahmadi. A novel can- didate disease gene prioritization method using deep graph convolutional networks and semi-supervised learning. BMC Bioin- formatics, 23(1):422, 2022. doi: 10.1186/ s12859-022-04954-x. URL https://doi. org/10.1186/s12859-022-04954-x
-
[6]
Barbosa-Silva, Maria Cristina Gonzalez, Renata M
Thiago G. Barbosa-Silva, Maria Cristina Gonzalez, Renata M. Bielemann, Leonardo P. Santos, Caroline dos S. Costa, and Ana Maria B. Menezes. 2 + 2(+2) = 4: A new approach for appendicular muscle mass assessment by ultrasound. Nutrition, 83:111056, 2021. ISSN 0899-9007. doi: https://doi.org/ 10.1016/j.nut.2020.111056. URL https: //www.sciencedirect.com/scie...
-
[7]
J.P. Bennett, M.C. Wong, Y.E. Liu, B.K. Quon, N.N. Kelly, A.K. Garber, S.B. Heymsfield, and J.A. Shepherd. Trunk-to- leg volume and appendicular lean mass from a commercial 3-dimensional optical body scanner for disease risk identification. Clin- ical Nutrition , 43(10):2430–2437, October
-
[8]
The rise of artificial intelligence in healthcare applications
Adam Bohr and Kaveh Memarzadeh. The rise of artificial intelligence in healthcare applications. In Adam Bohr and Kaveh Memarzadeh, editors, Artificial Intelligence in Healthcare, pages 25–60. Academic Press,
Show all 40 references
-
[9]
A compara- tive analysis of gradient boosting algo- rithms
C´ eline Bent´ ejac, Adrien Cs¨ org˝ o, and Gustavo Mart ´ ınez-Mu˜ noz. A compara- tive analysis of gradient boosting algo- rithms. Artificial Intelligence Review , 54:1937–1967, 3 2021. doi: 10.1007/ s10462-020-09896-5. URL https://doi. org/10.1007/s10462-020-09896-5 . Pub- ...
1937 doi
-
[10]
Consis- tency of semi-supervised learning, stochas- tic tug-of-war games, and the p-laplacian
Jeff Calder and Nadejda Drenska. Consis- tency of semi-supervised learning, stochas- tic tug-of-war games, and the p-laplacian. arXiv, January 2024
2024
-
[11]
Improved spectral convergence rates for graph laplacians on ϵ-graphs and k-nn graphs
Jeff Calder and Nicol´ as Garc ´ ıa Trillos. Improved spectral convergence rates for graph laplacians on ϵ-graphs and k-nn graphs. Applied and Computational Harmonic Analysis , 60:123–175, 2022. ISSN 1063-5203. doi: https://doi.org/ 10.1016/j.acha.2022.02.004. URL https: //www...
2022 doi
-
[12]
Graphlearning python package, January 2022
Jeff Calder. Graphlearning python package, January 2022. URL https://doi.org/10. 5281/zenodo.5850940
2022
-
[13]
Nazia Fathima, R
S.M. Nazia Fathima, R. Tamiselvi, and M. Parisa Beham. A survey on osteoporosis detection methods with a focus on x-ray and 18 dexa images. IETE Journal of Research, 68 (6):4640–4664, 2022
2022
-
[14]
Ran- dom Forests, pages 33–55
Robin Genuer and Jean-Michel Poggi. Ran- dom Forests, pages 33–55. Springer Inter- national Publishing, Cham, 2020
2020
-
[15]
Rates of convergence for lapla- cian semi-supervised learning with low la- beling rates
Jeff Calder, Dejan Slepˇ cev, and Matthew Thorpe. Rates of convergence for lapla- cian semi-supervised learning with low la- beling rates. Research in the Mathemati- cal Sciences , 10(10), 2023. doi: 10.1007/ s40687-022-00371-x. URL https://doi. org/10.1007/s40687-022-00371-x
2023 doi
-
[16]
M. I. Higgins, J. P. Marquardt, V. A. Mas- ter, F. J. Fintelmann, and S. P. Psutka. Ma- chine learning in body composition analysis. European Urology Focus, 7(4):713–716, Jul
-
[17]
The effect of sex, age and race on estimating percentage body fat from body mass index: The heritage family study
Andrew Jackson, Patricia Stanforth, Jean Gagnon, et al. The effect of sex, age and race on estimating percentage body fat from body mass index: The heritage family study. International Journal of Obesity , 26: 789–796, 2002. doi: 10.1038/sj.ijo.0802006
2002 doi
-
[18]
Deep Learning
Ian Goodfellow, Yoshua Bengio, and Aaron Courville. Deep Learning. MIT Press, 2016. http://www.deeplearningbook.org
2016
-
[19]
An Introduction to Statistical Learn- ing: with Applications in Python
Gareth James, Daniela Witten, Trevor Hastie, Robert Tibshirani, and Jonathan Taylor. An Introduction to Statistical Learn- ing: with Applications in Python . Springer,
-
[20]
A study of cross-validation and bootstrap for accuracy estimation and model selection
Ron Kohavi. A study of cross-validation and bootstrap for accuracy estimation and model selection. In Proceedings of the 14th International Joint Conference on Artificial Intelligence, 14:1137–1145, 03 2001
2001
-
[21]
Advances in digital anthropometric body composition assess- ment: neural network algorithm prediction of appendicular lean mass
Frederic Marazzato, Cassidy McCarthy, Ryan H Field, Han Nguyen, Thao Nguyen, John A Shepherd, Grant M Tinsley, and Steven B Heymsfield. Advances in digital anthropometric body composition assess- ment: neural network algorithm prediction of appendicular lean mass. European Jou...
-
[22]
An In- troduction to Statistical Learning: with Applications in R
Gareth James, Daniela Witten, Trevor Hastie, and Robert Tibshirani. An In- troduction to Statistical Learning: with Applications in R . Springer, 2013. URL https://faculty.marshall.usc.edu/ gareth-james/ISL/
2013
-
[23]
McCarthy, G
C. McCarthy, G. M. Tinsley, S. Yang, B. A. Irving, M. C. Wong, J. P. Bennett, et al. Smartphone prediction of skeletal muscle mass: model development and validation in adults. The American Journal of Clinical Nutrition, 117:794–801, 2023
2023
-
[24]
Artificial neural networks to predict future bone mineral density and bone loss rate in japanese postmenopausal women
Masakazu Shioji, Tetsuya Yamamoto, Takashi Ibata, Toshiyuki Tsuda, Keiichi Adachi, and Noriko Yoshimura. Artificial neural networks to predict future bone mineral density and bone loss rate in japanese postmenopausal women. BMC Research Notes , 10(1):590, 11 2017. doi: 10.1186...
2017 doi
-
[25]
Dechenaud, Jerome A
Sima Sobhiyeh, Samantha Kennedy, Alexander Dunkel, Marcelline E. Dechenaud, Jerome A. Weston, John 19 Shepherd, Peter Wolenski, and Steven B. Heymsfield. Digital anthropometry for body circumference measurements: Toward the development of universal three-dimensional optical sy...
2021 doi
-
[26]
Suykens and Joos Vande- walle
Johan A.K. Suykens and Joos Vande- walle. Least squares support vector ma- chine classifiers. Neural Processing Let- ters, 9(3):293–300, 1999. doi: 10.1023/A: 1018628609742. URL https://doi.org/ 10.1023/A:1018628609742
1999 doi
- [27]
-
[28]
Marin-Jimenez, C
N. Marin-Jimenez, C. Cruz-Leon, D. Sanchez-Oliva, J. Jimenez-Iglesias, I. Caraballo, C. Padilla-Moledo, et al. Criterion-related validity of field-based methods and equations for body compo- sition estimation in adults: a systematic review. Current Obesity Reports , 11: 336–349, 2022
2022
-
[29]
van Engelen and Holger H
Jesper E. van Engelen and Holger H. Hoos. A survey on semi-supervised learning. Machine Learning , 109:373 – 44a0, 2019. URL https://api.semanticscholar. org/CorpusID:254738406
2019
-
[30]
Kwok, and Lionel M
Yaqing Wang, Quanming Yao, James T. Kwok, and Lionel M. Ni. Generalizing from a few examples: A survey on few-shot learn- ing. ACM Computing Surveys (CSUR) , 53 (3):63:1–63:34, 2020. doi: 10.1145/3386252
2020 doi
-
[31]
Han, Robert A
Qing Wu, Fatma Nasoz, Jongyun Jung, Bibek Bhattarai, Mira V. Han, Robert A. Greenes, and Kenneth G. Saag. Ma- chine learning approaches for the pre- diction of bone mineral density by us- ing genomic and phenotypic data of 5130 older men. Scientific Reports , 11(4482): 1–10, 2...
2021
-
[32]
Percent body fat is a better predictor of cardiovascular risk factors than body mass index
Qiang Zeng, Sheng-Yong Dong, Xiao-Nan Sun, Jing Xie, and Yi Cui. Percent body fat is a better predictor of cardiovascular risk factors than body mass index. Re- vista brasileira de pesquisas medicas e bio- logicas, 45(7):591–600, 2012. doi: 10.1590/ s0100-879x2012007500059
2012
-
[33]
Recent develop- ments in data science: Comparing linear, ridge and lasso regressions techniques using wine data
Mayooran Thevaraja, Azizur Rahman, and Mathew Gabirial. Recent develop- ments in data science: Comparing linear, ridge and lasso regressions techniques using wine data. In Faouzi Hidoussi, editor, Proceedings of the International Conference on Digital Image & Signal Processing...
-
[34]
Kalervo V¨ a¨ an¨ anen and Pirkko L
H. Kalervo V¨ a¨ an¨ anen and Pirkko L. H¨ ark¨ onen. Estrogen and bone metabolism. Maturitas, 23(Suppl):S65–S69, 1996. doi: 10.1016/0378-5122(96)01015-8
1996 doi
-
[39]
Semi-supervised learning for bone mineral density estimation in hip x-ray images
Kang Zheng, Yirui Wang, Xiao-Yun Zhou, Fakai Wang, Le Lu, Chihung Lin, Lingyun Huang, Guotong Xie, Jing Xiao, Chang- Fu Kuo, and Shun Miao. Semi-supervised learning for bone mineral density estimation in hip x-ray images. In Marleen de Bruijne, Philippe C. Cattin, St´ ephane C...
2021
-
[40]
Semi-Supervised Learnning 20 with Graphs
Xiaojin Zhu. Semi-Supervised Learnning 20 with Graphs . PhD thesis, Carnegie Mellon University, 2005. 21 Figure 11: Distribution of RMSEs in predicting ALM by Polynomial Regression Models across Datasets Figure 12: Distribution of RMSEs in predicting BFP by Polynomial Regressi...
2005
-
[2020]
doi: 10.1016/B978-0-12-818438-7. 00002-2. Epub 2020 Jun 26. PMCID: PMC7325854
2020 doi
- [2021]
-
[2023]
URL https://hastie.su.domains/ ISLP/ISLP_website.pdf.download.html
- [2024]
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.