Pith. sign in

REVIEW 5 major objections 5 minor 29 references

FDRMFL: Multimodal Federated Feature Extraction Model Based on Information Maximization and Contrastive Learning

T0 review · 5 major / 5 minor · reviewed 2026-08-03 · deepseek-v4-flash

Pith's one-line read FDRMFL claims that a four-term objective—prediction error, mutual-information retention, cross-modal KL alignment, and contrastive anchoring—makes federated multimodal regression more accurate and stable under non-IID data.

desk verdict Abstract overclaims—no ablations or FedAvg baselines exist in the body—but the core loss combination is sensible and the reported wins over PCA/VAE are consistent. read the letter →

arxiv 2512.02076 v2 pith:AG5RDB3Z submitted 2025-11-30 cs.LG cs.AI

classification cs.LGcs.AI
keywords multi-modaldataanalysisfeatureextractionfederatedlearningcontrastivenon-IIDmutualinformationKLdivergencenear-infraredspectroscopyregression
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

FDRMFL is a task-driven feature extraction method for federated multimodal regression. The paper argues that when data cannot leave clients and local samples are scarce and non-IID, dimensionality reduction must be supervised: instead of maximizing variance or reconstruction quality, the extractor should be trained jointly with the downstream regressor. The proposed objective combines mean-squared-error prediction loss with three regularizers—a mutual-information surrogate that keeps target-relevant information, a symmetric KL penalty that aligns modality distributions before fusion, and an InfoNCE contrastive term that anchors local representations to previous-round global representations. In simulations on three synthetic link functions and two real near-infrared spectroscopy datasets, FDRMFL reports the lowest test MSE in every client-target combination, with mean reductions of 33.8% over PCA and 43.0% over a VAE baseline, and smaller cross-client variance. If true, this provides a privacy-preserving recipe for extracting predictive features from distributed multimodal data, with direct application to food and agricultural quality control.

What carries the argument

The central object is the four-term local objective L = L_pred + λ1 L_mi + λ2 L_kl + λ3 L_fcl. L_pred is mean squared error between prediction and true label. L_mi is an empirical surrogate for mutual information between the fused representation and the regression target, implemented as a sigmoid/binary cross-entropy bound with a negative-sample label. L_kl is a symmetric KL divergence between pairs of modality feature distributions; with a shared-variance Gaussian assumption it reduces to a scaled Euclidean distance between per-sample modality means. L_fcl is an InfoNCE-style contrastive loss using cosine similarity, with the previous round's global representation as the positive sample and

What would settle it

Run FDRMFL head-to-head against FedAvg, FedProx, MOON, SCAFFOLD, and FedBN on the paper's own simulation protocol; the abstract claims the lowest overall mean MSE among these six, but Tables 1-4 report only PCA/TSVD/RP/VAE comparisons. Also, remove each of the three regularizers one at a time; the paper claims all contribute, yet the promised ablation tables do not appear in the full text.

Watch

Extended reading notes

Core claim

The central claim is that the four-term objective works as a unit: the MSE term pins down regression accuracy, the mutual-information surrogate preserves dependence between the fused representation and the continuous target, the symmetric KL term aligns per-modality feature distributions before fusion, and the InfoNCE term stabilizes federated training by treating the previous global representation as the positive anchor and earlier global representations as negatives. Under a Gaussian homoscedastic approximation, the KL alignment collapses to a per-sample Euclidean penalty on modality-feature means. The paper reports that this combined objective yields the lowest MSE in all nine simulated n

Load-bearing premise

The method's load-bearing premise is that the sigmoid-based surrogate in Eq. (15) truly measures how much the fused representation depends on the continuous target; if it does not, the regularization can distort features rather than preserve predictive information.

Editorial extensions

If this is right

  • If the central claim holds, federated multimodal regression can be built around a supervised objective instead of unsupervised dimension reduction, preserving task-relevant information that PCA, TSVD, and RP discard.
  • The same four-term recipe should transfer to different encoder families (Transformer, CNN, LSTM, MLP) and fusion functions, so the method is not tied to one architecture.
  • The reported reduction in cross-client MSE spread implies that contrastive anchoring and KL alignment jointly act as a stabilizer under non-IID partitions.
  • For near-infrared spectroscopy, the method offers a privacy-preserving pipeline for food and agricultural quality prediction without centralizing sensitive spectral data.
  • The performance on two real datasets suggests the method can handle small-sample, high-dimensional functional covariates.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because the KL term collapses to per-sample Euclidean distances under the Gaussian assumption, we suspect the claimed 'distribution alignment' may mostly be centroid matching; a Wasserstein or MMD-based alignment could reveal whether higher-order distributional information matters.
  • The same objective could be adapted to classification or survival targets by replacing the MSE term and the MI surrogate, an extension the paper does not explore.
  • The paper's rationale implies an untested ordering of components: if MI retention is the main driver, simpler supervised dimensionality reduction might capture part of the gain; a direct comparison would isolate the contribution of the contrastive and KL terms.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

5 major / 5 minor

Summary. The manuscript proposes FDRMFL, a federated multimodal feature-extraction method for regression. It combines an MSE prediction loss with three regularizers: a mutual-information surrogate (Eq. 15), a symmetric KL divergence between modality feature distributions (Eq. 17), and an InfoNCE-style contrastive loss against historical global representations (Eq. 19). The authors claim each component contributes and that FDRMFL achieves the lowest MSE among six federated algorithms including FedAvg, FedProx, MOON, SCAFFOLD, and FedBN. Experiments are reported on three synthetic link-function settings and two near-infrared spectroscopy datasets, with PCA, TSVD, RP, and VAE as baselines.

Significance. The problem of task-driven multimodal feature extraction under federated non-IID constraints is timely, and the proposed loss combination is plausible. If fully validated with proper ablations and federated baselines, the method could be a useful contribution. The paper ships a concrete algorithm and reports run-level statistics. However, as written, the central empirical claims are not supported: no ablation or sensitivity analysis appears, no federated algorithm is compared against, and the theoretical justifications for the MI surrogate and KL simplification are not established.

major comments (5)
  1. [Abstract; §3.1, §3.2] The abstract claims 'comprehensive ablation and sensitivity analyses' and that FDRMFL 'attains the lowest overall mean MSE among six federated algorithms including FedAvg, FedProx, MOON, SCAFFOLD, and FedBN.' The body contains no ablation study, no sensitivity analysis, and no comparison with any federated algorithm. Tables 1–4 list only PCA, TSVD, RP, and VAE; §3.1 explicitly names 'PCA, TSVD, RP, MAE and FDRMFL'. The only acknowledgment of FedAvg is §2.2 ('Building upon FedAvg training...'), which does not test it. Thus the load-bearing claims of component contribution and superiority over federated baselines are unsupported.
  2. [§2.2, Eq. (15)] Eq. (15) is presented as a 'variational lower bound' for I(Z_ij; y_ij), but no derivation is given. The expression uses binary logistic losses on f(Z)·y and f(Z)·ỹ; for a continuous target y this is not any standard InfoNCE or variational MI estimator. Moreover f is the same prediction network trained by the MSE term in Eq. (14), so the 'information' being maximized is not independent of the predictor. The claim that this term 'preserves dependence' is therefore unsupported and arguably circular.
  3. [§2.1, §2.2, Eqs. (10), (16), (17)] The KL alignment term is reduced to a per-sample Euclidean penalty under the per-sample homoscedastic Gaussian assumption (Eq. 10). But p(z_im) is a distribution over features, not defined per sample; Eq. (16) computes symKL on point estimates z_ijm, z_ijn. The shared variance σ² is a free parameter, and the reduction to ||z_ijm−z_ijn||²/(2σ²) turns a distributional alignment objective into a pointwise distance. The mechanistic interpretation as 'cross-modal alignment at the distribution level' (§4) is not supported.
  4. [§3.1, §3.2] The experiments do not actually create non-IID partitions. §3.1 says 'Samples are then randomly partitioned across three clients'; this is an IID split. The real-data descriptions (§3.2) mention qualitative differences ('client1 contains mostly lean samples') but no quantitative distribution-shift measure or partition protocol is given. Since non-IID is one of the three core challenges motivating the method, the reported results cannot be interpreted as evidence for the non-IID setting.
  5. [§3.1, Tables 1–4] No ablation or sensitivity study is performed for the weights λ1, λ2, λ3, temperature τ, or σ². The abstract's promise of 'comprehensive ablation and sensitivity analyses' is absent. Without these, one cannot tell whether the observed MSE reductions come from the three added regularizers or simply from the supervised federated training itself.
minor comments (5)
  1. [§3.1] The baseline list includes 'MAE' but no MAE results appear; presumably 'VAE' is meant. This typo obscures the baseline set and should be fixed.
  2. [§2.3] This section is a long textbook exposition of Transformer, CNN, LSTM, and MLP architectures. It is unrelated to the experiments and could be condensed or moved to an appendix.
  3. [Table 3] The target is labeled 'Water' in the table but 'moisture' in the text; standardize the terminology.
  4. [Abstract] The phrase 'six federated algorithms' is ambiguous: if it means FDRMFL plus five baselines, the names should be explicit; if it means six baselines, the list is incomplete. In any case, no such comparisons appear in the body.
  5. [Eq. (10)] The symbol μ_im is used in the Gaussian assumption but never defined. Eq. (17) then switches to sample-level notation z_ijm, which adds confusion about what is being aligned.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the derived loss terms are stated assumptions and algebraic simplifications, not fits renamed as predictions.

full rationale

The paper derives its four-term objective by explicit definitions (Eqs. 2, 5, 9, 12) and standard algebraic simplifications: Eq. (3) follows from y = f(Z) + epsilon, and Eq. (17) follows from the stated homoscedastic Gaussian assumption in Eq. (10). No parameter is fit to a target and then reported as a prediction; all reported MSE values compare FDRMFL against independent external baselines (PCA, TSVD, RP, VAE) on held-out test sets. The MI surrogate in Eq. (15) uses the prediction network f as a critic, but this is a shared-critic design choice, not a fitted input called a prediction and not an equivalence by construction. The paper contains no self-citations, no imported uniqueness theorems, and no ansatz smuggled through prior work. The abstract promises 'comprehensive ablation and sensitivity analyses' and superiority over FedAvg/FedProx/MOON/SCAFFOLD/FedBN, while Section 3 reports no ablation and no such federated baselines; this is an evidentiary gap that weakens the empirical claims, but it is not circular. Under the hard rule requiring a quoted equation-level reduction, no circular step can be established.

Assumptions & free parameters 3 free parameters · 3 assumptions · 0 invented entities

The method depends on several assumptions about the MI estimator, the Gaussian form of modal features, and the effect of contrastive anchoring. The paper does not provide derivations for the MI bound or ablation results to support the contribution claims.

free parameters (3)
  • λ1, λ2, λ3 (regularization weights) = not reported
    Balance the MI, KL, and contrastive terms in Eq (13); values are hand-chosen and not reported, and no sensitivity analysis is shown despite the abstract claiming one.
  • τ (temperature in InfoNCE) = not reported
    Temperature in the contrastive loss Eq (12/19); standard hyperparameter, value not given.
  • σ² (Gaussian variance for KL simplification) = not reported
    Appears in Eq (17) when simplifying KL divergence to Euclidean distance; value is free and not specified, making the alignment term scale-arbitrary.
assumptions (3)
  • ad hoc to paper Variational lower bound for mutual information as in Eq (15): I(Z;y) ≥ E[log σ(f(Z)·y) + log(1−σ(f(Z)·ỹ))]
    The bound is stated without derivation and is not a standard MI estimator for continuous y; it uses the same prediction function f that is trained, making the 'mutual information' term dependent on the predictor architecture.
  • ad hoc to paper Per-sample homoscedastic Gaussian distributions for each modality (Eq 10): p(z_m) ~ N(μ_m, σ²I)
    This assumption lets the KL divergence become a simple Euclidean distance between individual feature vectors (Eq 17), but features are not per-sample distributions; the alignment is therefore not a true distributional alignment.
  • domain assumption Contrastive anchoring with historical global representations (Eq 19) reduces representation drift and catastrophic forgetting
    The paper asserts without a proof or ablation that InfoNCE against previous global models prevents drift; no analysis is provided for the regression setting.

how reviews work

0 comments
Cite this review

Pith. "Pith review of FDRMFL: Multimodal Federated Feature Extraction Model Based on Information Maximization and Contrastive Learning." pith.science (2026). https://pith.science/paper/AG5RDB3Z

@misc{pith2026251202076,
  author       = {Pith},
  title        = {Pith review of: FDRMFL: Multimodal Federated Feature Extraction Model Based on Information Maximization and Contrastive Learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/AG5RDB3Z}},
  note         = {Machine review of arXiv:2512.02076}
}
read the original abstract

We propose FDRMFL, a task-driven multimodal feature extraction framework for federated regression under non-IID data distributions. Extracting predictive features from high-dimensional multimodal inputs is particularly challenging in this setting: data cannot leave each client, local samples are scarce and heterogeneously distributed, and unsupervised dimensionality reduction discards task-relevant information while federated training introduces representation drift across communication rounds. FDRMFL addresses these challenges through a unified four-term local objective: MSE prediction loss, a correlation-based mutual information surrogate that preserves dependence between the fused representation and the continuous target, a symmetric KL penalty that aligns cross-modal latent distributions before fusion, and an InfoNCE-style contrastive loss that anchors local representations to the global consensus. Experiments on three synthetic and two real-world near-infrared spectroscopy datasets under non-IID federated partitions, with comprehensive ablation and sensitivity analyses, demonstrate that each component contributes to the framework's effectiveness. FDRMFL reduces mean MSE by 33.8% relative to the best traditional baseline (PCA) and by 43.0% relative to VAE in simulation, and attains the lowest overall mean MSE among six federated algorithms including FedAvg, FedProx, MOON, SCAFFOLD, and FedBN.

Figures

Figures reproduced from arXiv: 2512.02076 by the authors.

Figure 1
Figure 1. Overall architecture for federated multi-modal learning. function 𝑔. The final prediction output is given by 𝑓(𝑍𝑖 ), and it satisfies the following relationship with the true labels: 𝑦𝑖 = 𝑓(𝑍𝑖 ) + 𝜖𝑖 (1) where 𝜖𝑖 is a random error term (satisfying 𝔼[𝜖𝑖 |𝑍𝑖 ] = 0 and Var(𝜖𝑖 |𝑍𝑖 ) = 𝜎 2 𝜖,𝑖). The optimization goal of the global model is to minimize the overall risk, which includes four terms: prediction loss, mutual i… view at source ↗
Figure 2
Figure 2. FDRMFL Multi-Modal Federated Feature Extraction and Evaluation Pipeline where head𝑖 = Attention( 𝑄𝑊𝑄𝑖 , 𝐾𝑊𝐾𝑖 , 𝑉 𝑊𝑉𝑖 ) , 𝑖 = 1, … , ℎ, and 𝑊𝑄𝑖 , 𝑊𝐾𝑖 , 𝑊𝑉𝑖 ∈ ℝ𝑑model×𝑑𝑘 are the linear transfor￾mation matrices of the 𝑖-th attention head, while 𝑊𝑂 ∈ ℝℎ𝑑𝑘×𝑑model is the output projection matrix; all of them are learnable parameters. FFN(𝑥) = max(0, 𝑥𝑊1 + 𝑏1 )𝑊2 + 𝑏2 (28) where 𝑊1 ∈ ℝ𝑑model×𝑑ff and 𝑊2 ∈ ℝ𝑑ff×𝑑model are th… view at source ↗
Figure 3
Figure 3. Visualization of the MSE comparison of methods under Link Function scenarios (http://eigenvector.com/data/corn/index.html), which is a typical dataset for grain composition prediction research in the field of agricultural chemistry. This dataset contains 80 corn samples, and each sample also contains two parts of information: one is 4 scalar chemical components (oil content, moisture, starch, protein); the other is … view at source ↗
Figures from the paper (3 more)
Figure 4
Figure 4. Figure 4: Visualization of the MSE comparison between VAE and FDRMFL under different link functions Wu H.: Preprint submitted to Elsevier Page 10 of 15 [PITH_FULL_IMAGE:figures/full_fig_p010_4.png]
Figure 5
Figure 5. Figure 5: Visualization of the comparison of prediction MSE by various methods on the Tecator dataset yield lower errors and smaller cross-client variance under high noise, peak overlap, strong non-IID, and nonlinearity, consistent with the advantages observed in Tables 3, 4 and…
Figure 6
Figure 6. Figure 6: Visualization of the comparison of prediction MSE by various methods under the corn dataset Tables 3, 4 and Figures 5, 6), the bars for FDRMFL remain consistently shortest with uniform heights, visually reinforc￾ing its core advantages of high accuracy and high stabili…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

29 extracted references · 2 linked inside Pith

  1. [1]

    Geometric means in a novel vector space structure on symmetric positive-definite matrices

    Arsigny, V., Fillard, P., Pennec, X., Ayache, N., 2007. Geometric means in a novel vector space structure on symmetric positive-definite matrices. SIAM journal on matrix analysis and applications 29, 328– 347

  2. [2]

    Prediction by supervised principal components

    Bair, E., Hastie, T., Paul, D., Tibshirani, R., 2006. Prediction by supervised principal components. Journal of the American Statistical Association 101, 119–137

  3. [3]

    Multimodal machine learning: A survey and taxonomy

    Baltrušaitis, T., Ahuja, C., Morency, L., 2019. Multimodal machine learning: A survey and taxonomy. IEEE Transactions on Pattern Analysis and Machine Intelligence 41, 423–443

  4. [4]

    Geometry of the space of phylogenetic trees

    Billera, L.J., Holmes, S.P., Vogtmann, K., 2001. Geometry of the space of phylogenetic trees. Advances in Applied Mathematics 27, 733–767

  5. [5]

    Randomprojectionindimensionality reduction: Applications to image and text data, in: Proceedings of the 7thACMSIGKDDInternationalConferenceonKnowledgeDiscovery and Data Mining, ACM

    Bingham,E.,Mannila,H.,2001. Randomprojectionindimensionality reduction: Applications to image and text data, in: Proceedings of the 7thACMSIGKDDInternationalConferenceonKnowledgeDiscovery and Data Mining, ACM. pp. 245–250

  6. [6]

    Tools for fast metric data search in structural methods for image classification

    Daradkeh,Y.I.,Gorokhovatskyi,V.,Tvoroshenko,I.,Zeghid,M.,2022. Tools for fast metric data search in structural methods for image classification. IEEE Access 10, 124738–124746

  7. [7]

    Computational topology for data analysis

    Dey, T.K., Wang, Y., 2022. Computational topology for data analysis. Cambridge University Press

  8. [8]

    Non-euclideanstatistics for covariance matrices, with applications to diffusion tensor imaging

    Dryden,I.L.,Koloydenko,A.,Zhou,D.,2009. Non-euclideanstatistics for covariance matrices, with applications to diffusion tensor imaging. The Annals of Applied Statistics , 1102–1123

Show all 29 references
  1. [9]

    Modelingtime-varyingrandomobjects anddynamicnetworks

    Dubey,P.,Müller,H.G.,2022. Modelingtime-varyingrandomobjects anddynamicnetworks. JournaloftheAmericanStatisticalAssociation 117, 2252–2267

  2. [10]

    Regression for non-euclidean data using distance matrices

    Faraway, J.J., 2014. Regression for non-euclidean data using distance matrices. Journal of Applied Statistics 41, 2342–2357

  3. [11]

    Finding structure with randomness: Probabilistic algorithms for constructing approximate matrix decompositions

    Halko, N., Martinsson, P.G., Tropp, J.A., 2011. Finding structure with randomness: Probabilistic algorithms for constructing approximate matrix decompositions. SIAM Review 53, 217–288

  4. [12]

    Robust nonparametric regression with metric-space valued output

    Hein, M., 2009. Robust nonparametric regression with metric-space valued output. Advances in neural information processing systems 22

  5. [13]

    beta-vae: Learning basic visual concepts with a constrained variational framework, in: International Conference on Learning Representations (ICLR)

    Higgins, I., Matthey, L., Pal, A., Burgess, C., Glorot, X., Botvinick, M., Mohamed, S., Lerchner, A., 2017. beta-vae: Learning basic visual concepts with a constrained variational framework, in: International Conference on Learning Representations (ICLR)

  6. [14]

    Areviewonevaluationmetricsfor data classification evaluations

    Hossin,M.,Sulaiman,M.N.,2015. Areviewonevaluationmetricsfor data classification evaluations. International journal of data mining & knowledge management process 5, 1

  7. [15]

    Kairouz, P., McMahan, H.B., Avent, B., Bellet, A., Bennis, M., et al.,

  8. [16]

    Observable covariance and principal observable analysis for data on metric spaces

    Karacam, E., Mio, W., Okutan, O.B., 2025. Observable covariance and principal observable analysis for data on metric spaces. arXiv preprint arXiv:2506.04003

  9. [17]

    Scaffold: Stochastic controlled averaging for federated learning, in: Proceedings of the 37th International Conference on Machine Learning (ICML), PMLR

    Karimireddy,S.P.,Kale,S.,Mohri,M.,Reddi,S.J.,Stich,S.U.,Suresh, A.T., 2020. Scaffold: Stochastic controlled averaging for federated learning, in: Proceedings of the 37th International Conference on Machine Learning (ICML), PMLR. pp. 5132–5143. Wu H.:Preprint submitted to Elsev...

  10. [18]

    Overcom- ing catastrophic forgetting in neural networks

    Kirkpatrick, J., Pascanu, R., Rabinowitz, N.C., et al., 2017. Overcom- ing catastrophic forgetting in neural networks. Proceedings of the National Academy of Sciences (PNAS) 114, 3521–3526

  11. [19]

    Federated optimization in heterogeneous networks, in: Proceedings of the 2nd Conference on Machine Learning and Systems (MLSys)

    Li, T., Sahu, A.K., Zaheer, M., Sanjabi, M., Talwalkar, A., Smith, V., 2020. Federated optimization in heterogeneous networks, in: Proceedings of the 2nd Conference on Machine Learning and Systems (MLSys)

  12. [20]

    Eclipse: Efficient long-range video retrieval using sight and sound, in: European Conference on Computer Vision, Springer

    Lin, Y.B., Lei, J., Bansal, M., Bertasius, G., 2022. Eclipse: Efficient long-range video retrieval using sight and sound, in: European Conference on Computer Vision, Springer. pp. 413–430

  13. [21]

    Object oriented data analysis

    Marron, J.S., Dryden, I.L., 2021. Object oriented data analysis. Chapman and Hall/CRC

  14. [22]

    Communication-efficient learning of deep networks from decentralized data, in: Proceedings of the 20th International ConferenceonArtificialIntelligenceandStatistics(AISTATS),PMLR

    McMahan, H.B., Moore, E., Ramage, D., Hampson, S., Aguera y Arcas, B., 2017. Communication-efficient learning of deep networks from decentralized data, in: Proceedings of the 20th International ConferenceonArtificialIntelligenceandStatistics(AISTATS),PMLR. pp. 1273–1282

  15. [23]

    Functionalanalysis:anintroductiontometricspaces, Hilbert spaces, and Banach algebras

    Muscat,J.,2024. Functionalanalysis:anintroductiontometricspaces, Hilbert spaces, and Banach algebras. Springer Nature

  16. [24]

    Representation learning with contrastive predictive coding

    van den Oord, A., Li, Y., Vinyals, O., 2018. Representation learning with contrastive predictive coding. URL:https://arxiv.org/abs/1807. 03748,arXiv:1807.03748

  17. [25]

    Optimal-transport analysis of single-cell gene expression identifies developmental trajectories in reprogramming

    Schiebinger, G., Shu, J., Tabaka, M., Cleary, B., Subramanian, V., Solomon, A., Gould, J., Liu, S., Lin, S., Berube, P., et al., 2019. Optimal-transport analysis of single-cell gene expression identifies developmental trajectories in reprogramming. Cell 176, 928–943

  18. [26]

    Aneffective multimodal image fusion method using mri and pet for alzheimer’s disease diagnosis

    Song,J.,Zheng,J.,Li,P.,Lu,X.,Zhu,G.,Shen,P.,2021. Aneffective multimodal image fusion method using mri and pet for alzheimer’s disease diagnosis. Frontiers in digital health 3, 637386

  19. [27]

    Remaining useful life prediction of iiot-enabled complex industrial systems with hybrid fusionofmultipleinformationsources.IEEEInternetofThingsJournal 8, 9045–9058

    Wen, P., Li, Y., Chen, S., Zhao, S., 2021. Remaining useful life prediction of iiot-enabled complex industrial systems with hybrid fusionofmultipleinformationsources.IEEEInternetofThingsJournal 8, 9045–9058

  20. [28]

    Local polynomial regression for symmetric positive definite matrices

    Yuan, Y., Zhu, H., Lin, W., Marron, J.S., 2012. Local polynomial regression for symmetric positive definite matrices. Journal of the Royal Statistical Society Series B: Statistical Methodology 74, 697– 719. Wu H.:Preprint submitted to Elsevier Page 15 of 15

  21. [2021]

    Foundations and Trends in Machine Learning 14, 1–210

    Advancesandopenproblemsinfederatedlearning. Foundations and Trends in Machine Learning 14, 1–210

Pith tools

Reviewed August 3, 2026 · model on record in the stance chip above.