Pith. sign in

REVIEW 5 major objections 4 minor 62 references

Multi-View Incremental Learning with Structured Hebbian Plasticity for Enhanced Fusion Efficiency

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

Pith's one-line read This paper proposes a multi-view incremental learning framework that fuses views one at a time with a Hebbian weight update and a synapse mask, and claims it outperforms state-of-the-art graph-based methods on six benchmarks.

desk verdict Timely problem, plausible mechanism, but the empirical evidence is too sloppy and internally inconsistent to support the paper's SOTA claims. read the letter →

arxiv 2412.12801 v1 pith:HKEOSG4Y submitted 2024-12-17 cs.CV cs.LG

classification cs.CVcs.LG
keywords multi-viewincrementallearningHebbianplasticitysynapticpartitiongraphconvolutionalnetworkssemi-supervisednodeclassificationcontinualknowledgeretention
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

This paper studies semi-supervised node classification when the number of views grows over time. It claims that a shared two-layer graph convolutional network, updated view by view, can fuse new information with old knowledge if two biologically inspired mechanisms are added: structured Hebbian plasticity, which strengthens second-layer weights according to the correlation between the new view and the previous fused representation, and synaptic partition learning, which randomly disables a fraction of first-layer synapses. The paper reports that on six benchmark datasets this combination outperforms static multi-view learning methods, continual learning methods, and a multi-view class-incremental baseline. A correct method of this kind would let deployed systems absorb new sensor views incrementally without retraining on all previous data.

What carries the argument

Structured Hebbian plasticity is the update rule $W_2^* = W_2 + \varepsilon(\hat{A}_v X_v W_1)^T H_{v-1}$, an outer-product term between the new view's graph-convolved features and the previous fused representation; it is the mechanism that expresses fine-grained correlation between old and new views. Synaptic partition learning is the elementwise mask $\mathrm{Reshape}(M)\cdot W_1$, where $M$ is a binary matrix with at most $\theta$ of its entries set to 1 and re-randomized each epoch; it disables part of the first-layer weight to suppress drastic changes. The streaming fusion equation $H_v = \hat{A}_v \sigma(\hat{A}_v X_v W_1^*)W_2 + \alpha H_{v-1}^*$ and the weight-drift regularizer $L_{RE}$ complete the machinery by blending the new stream with the retained representation and penalizing large weight changes.

What would settle it

Re-run the six benchmark comparisons under a protocol where all hyperparameters, including the mask fraction and the Hebbian learning rate, are chosen on a held-out validation set and all baselines receive the same training budget; if MVIL's advantage over the best baseline falls within the reported run-to-run variance, the superiority claim is unsupported.

Watch

Extended reading notes

Core claim

The central claim is that a streaming fusion rule, not a storage of old views, is enough to accumulate knowledge: when view $v$ arrives, the model computes $H_v = \hat{A}_v \sigma(\hat{A}_v X_v W_1^*)W_2 + \alpha H_{v-1}^*$, blending the new view's graph-filtered features with the retained representation from all previous views. The paper then adjusts weights in two complementary ways: $W_1$ is masked by a random binary matrix that turns off at most a $\theta$ fraction of its entries each epoch, and $W_2$ receives a Hebbian increment $\varepsilon(\hat{A}_v X_v W_1)^T H_{v-1}$ that reinforces connections whose pre- and post-synaptic activities co-occur. Together with a regularizer that penalizes deviation of $W_1$ and $W_2$ from their previous values, these updates are claimed to achieve fine-grained fusion of view representations while retaining old knowledge, yielding superior accuracy, precision, recall, and macro-F1 over the compared methods on all six datasets.

Load-bearing premise

The claim that MVIL beats state-of-the-art methods rests on the experimental comparison being fair, and the paper does not report the fraction of disabled synapses, the strength of the Hebbian update, or the validation procedure used to set per-dataset hyperparameters.

Editorial extensions

If this is right

  • A system can incorporate a new view by updating shared weights instead of retraining on all views together, so previous raw data need not be stored.
  • Performance on view-heavy datasets improves over static multi-view learners, which lose accuracy as view count grows.
  • The Hebbian term adjusts the classifier weights before backpropagation, so correlation-based knowledge transfer is built into forward computation.
  • Because the two weight matrices are shared across all views, model parameter count stays constant as views accumulate.
  • Old knowledge is retained through a fused representation rather than through stored examples, which the paper argues supports privacy.

Reading between the lines

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

  • If the Hebbian term is read as a correlation-based cross-view attention, the framework could be extended to weight views by reliability, a variant the paper does not test.
  • A testable extension is to vary the mask fraction and the Hebbian learning rate on a validation set and observe when reinforcement should dominate suppression; the paper reports neither value.
  • The adjustment strategy is written for a two-layer GCN but nothing in the equations depends on the GCN's specific message passing, suggesting the same update could be applied to deeper or attention-based graph encoders.
  • The no-storage property points toward deployment in federated or on-device settings where views arrive from different sensors at different times.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

5 major / 4 minor

Summary. The paper proposes MVIL, a continual multi-view learning framework for semi-supervised node classification in the setting where views arrive sequentially. A two-layer GCN with shared weights is trained incrementally; a structured Hebbian update is applied to the second-layer weights based on the correlation between new-view features and the previous fused representation, and a synaptic partition mask randomly disables a fraction of the first-layer weights each epoch. Training uses cross-entropy plus a regularization term that penalizes large weight changes. Experiments on six benchmark datasets compare MVIL with static multi-view learning and continual learning baselines, reporting accuracy, precision, recall, and macro-F1, and the paper claims superior performance over state-of-the-art graph-based algorithms.

Significance. If the empirical claims hold, MVIL would be a useful contribution: the incremental-view setting is real and under-studied, and the two mechanisms, Hebbian reinforcement and random synaptic masking, are simple enough to transfer to other graph architectures. The paper also includes an ablation study and a parameter sensitivity analysis, which are valuable. However, the contribution is primarily experimental, and the current evidence base has reproducibility and fairness gaps that block verification of the headline claim. The theoretical motivation is qualitative, and the reported experiments are not yet reported to the standard needed to support a state-of-the-art claim.

major comments (5)
  1. [Experimental Setting / Table 5] The two hyperparameters that control the proposed modules, ε in Eq. (5) and θ in Eq. (7), are never reported. The text only constrains θ with 'θ ≪ 1/V', and ε does not appear in Table 5 or in the parameter sensitivity analysis. Without these values, the core mechanisms of MVIL cannot be reproduced, and the results in Table 3 cannot be independently checked.
  2. [Experimental Setting] Table 5 gives per-dataset values for k, lr, hidden dimension d, and β, but the paper does not describe any validation split or model-selection procedure. Since only 10% of labels are used, choosing these hyperparameters on test accuracy would leak test information into model selection. The authors should state whether a held-out validation set was used and describe the tuning protocol.
  3. [Comparison to SOTA (EQ1) / Table 3] The training budget is specified only for MVIL ('600 rounds per view'), and no comparable budget is given for TMC, LGCNFF, IHGCN, SI, MAS, or MVCIL. If baselines were trained with fewer epochs or less careful hyperparameter tuning, the comparison would be biased. The paper needs to report the training schedule and hyperparameter search for every baseline.
  4. [Table 3] All results are averages over three runs, and no significance tests or confidence intervals beyond standard deviations are reported. Several claimed improvements are small relative to the reported deviations, e.g., 100leaves ACC 91.50±0.47 versus IHGCN 91.03±0.70, and Animals ACC 84.42±0.10 versus IHGCN 83.13±0.04. A paired significance test (e.g., a paired t-test or Wilcoxon test over more runs) should be reported before claiming superiority.
  5. [Eqs. (5)–(6) and Table 4] There are inconsistencies between the method description and the reported ablation. First, Eq. (5) and Eq. (6) use (Â_v X_v W1) as the new-view feature, but Eq. (2) defines the hidden features as σ(Â_v X_v W*_1), i.e., with the mask and nonlinearity; this makes the Hebbian update ambiguous. Second, the full model 'C1+C2+C3' in Table 4 should equal the MVIL column in Table 3, but accuracies differ for 100leaves (91.36 vs. 91.50) and Flower17 (57.79 vs. 60.54). The authors should align the equations and resolve the discrepancy.
minor comments (4)
  1. [Abstract and Heading] There are typos in visible places: 'MVIL lies two fundamental modules' should be 'MVIL has two fundamental modules', and the section heading 'Preilminary' should be 'Preliminary'.
  2. [Eq. (7)] The mask M is defined as R^{nd×1}, but after reshaping it is used as R^{d_v×d}; since W1 is R^{d_v×d}, the mask should have d_v·d entries, not n·d. The notation is inconsistent.
  3. [Eq. (2)] The learnable parameter α is not described in the parameter table or in the optimization details; if it is learned, its initialization, update rule, and resulting values should be reported.
  4. [Figure 4] Figure 4 reports normalized time and space costs as percentages, but the hardware, implementation library, and measurement methodology are not specified, so the efficiency comparison is hard to interpret.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: MVIL is an empirical method paper whose performance claims rest on benchmark experiments, not on a derivation that reduces to its own inputs.

full rationale

The paper proposes a heuristic incremental multi-view learning framework and supports it with experiments; it does not claim to derive a result from first principles or to predict a quantity from a fitted parameter. The structured Hebbian update (Eq. 5) and synaptic partition mask (Eq. 8) are stated construction rules, not fitted-then-predicted quantities. The Hebbian rule is justified by external neuroscience and continual-learning citations (e.g., Golkar et al. 2020; Triche et al. 2022; Zenke et al. 2017), and those citations are not used to forbid alternatives or to import a uniqueness theorem. The comparison claim depends on the reported benchmark numbers, which raises reproducibility concerns because the validation split is not described, the mask ratio theta and Hebbian learning rate epsilon are not reported, and baseline training budgets are unspecified; however, these issues concern experimental fairness and completeness, not circularity in the sense of a prediction being equivalent to its input by construction. The derivation chain is self-contained as an algorithm proposal, so under the stated hard rules the honest finding is no significant circularity.

Assumptions & free parameters 7 free parameters · 4 assumptions · 0 invented entities

The framework rests on several hand-set hyperparameters (k, lr, hidden d, beta, theta, epsilon, alpha) and on the assumption that kNN graphs from raw views plus a Hebbian outer-product update are sufficient for view fusion. No code, data splits, or artifact are provided. No new physical entities are introduced.

free parameters (7)
  • kNN neighbor count k = 5, 10, 5, 30, 5, 5 per dataset (Table 5)
    Number of neighbors for graph construction, tuned per dataset.
  • learning rate lr = 0.01, 0.001, 0.0025, 0.0001, 0.007, 0.04 per dataset (Table 5)
    Optimizer learning rate, tuned per dataset.
  • hidden dimension d = 64, 128, 512, 256, 512, 256 per dataset (Table 5)
    Width of the GCN hidden layer, tuned per dataset.
  • regularization weight beta = 1e-5, 1e-5, 0.02, 0.038, 0.3, 0.08 per dataset (Table 5)
    Scales the L_RE loss that penalizes weight changes, tuned per dataset.
  • synaptic mask ratio theta = not reported (stated theta << 1/V)
    Controls the fraction of masked synapses in synaptic partition learning; no numerical values are reported.
  • Hebbian learning rate epsilon = not reported
    Scales the structured Hebbian weight update in Equations (5) and (6); value is never listed.
  • balancing coefficient alpha = learned during training, not reported
    Learnable weight balancing the new view data and past knowledge in Equation (2).
assumptions (4)
  • domain assumption A k-nearest-neighbor graph built from each view's raw features captures that view's useful similarity structure for node classification.
    The streaming model operates entirely on adjacency matrices A_v constructed by kNN from X_v; no learned graph or edge features are used.
  • ad hoc to paper The cross-correlation between the new view's hidden features and the previous fused representation is the right signal for strengthening weights.
    This is the core design assumption of structured Hebbian plasticity in Equation (5); the paper motivates it by analogy to Hebbian theory but gives no derivation or independent validation.
  • ad hoc to paper Randomly masking a fraction theta of the first-layer weights with a fresh random pattern each epoch reduces forgetting without unacceptably hurting current-view learning.
    Synaptic partition learning is implemented as random dropout-like masking; the paper provides no analysis of how theta interacts with V, and theta is not reported.
  • domain assumption Cross-entropy on 10% labeled nodes is a valid evaluation for semi-supervised node classification.
    The method is evaluated with 10% randomly selected labels, which is a standard but nontrivial assumption about label availability and representativeness.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Multi-View Incremental Learning with Structured Hebbian Plasticity for Enhanced Fusion Efficiency." pith.science (2026). https://pith.science/paper/HKEOSG4Y

@misc{pith2026241212801,
  author       = {Pith},
  title        = {Pith review of: Multi-View Incremental Learning with Structured Hebbian Plasticity for Enhanced Fusion Efficiency},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HKEOSG4Y}},
  note         = {Machine review of arXiv:2412.12801}
}
read the original abstract

The rapid evolution of multimedia technology has revolutionized human perception, paving the way for multi-view learning. However, traditional multi-view learning approaches are tailored for scenarios with fixed data views, falling short of emulating the intricate cognitive procedures of the human brain processing signals sequentially. Our cerebral architecture seamlessly integrates sequential data through intricate feed-forward and feedback mechanisms. In stark contrast, traditional methods struggle to generalize effectively when confronted with data spanning diverse domains, highlighting the need for innovative strategies that can mimic the brain's adaptability and dynamic integration capabilities. In this paper, we propose a bio-neurologically inspired multi-view incremental framework named MVIL aimed at emulating the brain's fine-grained fusion of sequentially arriving views. MVIL lies two fundamental modules: structured Hebbian plasticity and synaptic partition learning. The structured Hebbian plasticity reshapes the structure of weights to express the high correlation between view representations, facilitating a fine-grained fusion of view representations. Moreover, synaptic partition learning is efficient in alleviating drastic changes in weights and also retaining old knowledge by inhibiting partial synapses. These modules bionically play a central role in reinforcing crucial associations between newly acquired information and existing knowledge repositories, thereby enhancing the network's capacity for generalization. Experimental results on six benchmark datasets show MVIL's effectiveness over state-of-the-art methods.

Figures

Figures reproduced from arXiv: 2412.12801 by the authors.

Figure 1
Figure 1. Sensory signals reach the brain sequentially, and [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. An overview of the proposed framework MVIL, which is drawn by Figdraw. MVIL introduces a weight adjustment [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. A comparison of MVIL streaming input and [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (4 more)
Figure 5
Figure 5. Figure 5: The initial features and learned fused representa￾tions for each view of the NGs. cally, MVIL improves over the suboptimal method by 1.6% in the Flower17 dataset and 2.83% in the YaleB Extended dataset. This illustrates that even with non-static multi-view data, we are…
Figure 6
Figure 6. Figure 6: A comparison of MVIL streaming input and [PITH_FULL_IMAGE:figures/full_fig_p010_6.png]
Figure 7
Figure 7. Figure 7: The parameter sensitivity analysis of k and hidden in MVIL on tested datasets. rameters, and β represents the scaling value in loss LRE. Parameter Sensitivity Analysis In [PITH_FULL_IMAGE:figures/full_fig_p010_7.png]
Figure 8
Figure 8. Figure 8: The visualization for multi-view semi-supervised classification on NoisyMNIST [PITH_FULL_IMAGE:figures/full_fig_p011_8.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

62 extracted references · 58 canonical work pages

  1. [1]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...

  2. [2]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...

  3. [3]

    Aljundi, R.; Babiloni, F.; Elhoseiny, M.; Rohrbach, M.; and Tuytelaars, T. 2018. Memory aware synapses: Learning what (not) to forget. In ECCV, 139--154

  4. [4]

    Cai, H.; Tan, Y.; Huang, S.; and Lv, J. 2023. Lifelong multi-view spectral clustering. In IJCAI, 3488--3496

  5. [5]

    Chen, Y.; Chen, F.; Wu, Z.; Chen, Z.; Cai, Z.; Tan, Y.; and Wang, S. 2024 a . Heterogeneous Graph Embedding with Dual Edge Differentiation. Neural Networks, 106965

  6. [6]

    Chen, Z.; Fu, L.; Yao, J.; Guo, W.; Plant, C.; and Wang, S. 2023 a . Learnable graph convolutional network and feature fusion for multi-view learning. Information Fusion, 95: 109--119

  7. [7]

    Chen, Z.; Wu, Z.; Lin, Z.; Wang, S.; Plant, C.; and Guo, W. 2023 b . AGNN: Alternating graph-regularized neural networks to alleviate over-smoothing. IEEE Transactions on Neural Networks and Learning Systems, 35(10): 13764--13776

  8. [8]

    Chen, Z.; Wu, Z.; Wang, S.; and Guo, W. 2023 c . Dual low-rank graph autoencoder for semantic and topological networks. In AAAI, volume 37, 4191--4198

Show all 62 references
  1. [9]

    Chen, Z.; Wu, Z.; Zhong, L.; Plant, C.; Wang, S.; and Guo, W. 2024 b . Attributed Multi-order Graph Convolutional Network for Heterogeneous Graphs. Neural Networks, 174: 106225

  2. [10]

    J.; and Beer, R

    Chiel, H. J.; and Beer, R. D. 1997. The brain has a body: adaptive behavior emerges from interactions of nervous system, body and environment. Trends in neurosciences, 20(12): 553--557

  3. [11]

    Cui, Q.; Wu, S.; Liu, Q.; Zhong, W.; and Wang, L. 2018. MV-RNN: A multi-view recurrent neural network for sequential recommendation. IEEE Transactions on Knowledge and Data Engineering, 32(2): 317--331

  4. [12]

    Duan, Y.; Jia, Z.; Li, Q.; Zhong, Y.; and Ma, K. 2023. Hebbian and gradient-based plasticity enables robust memory and rapid learning in rnns. In ICLR

  5. [13]

    Golkar, S.; Lipshutz, D.; Bahroun, Y.; Sengupta, A.; and Chklovskii, D. 2020. A simple normative network approximates local non-Hebbian learning in the cortex. In NeurIPS, volume 33, 7283--7295

  6. [14]

    Han, Z.; Zhang, C.; Fu, H.; and Zhou, J. T. 2020. Trusted multi-view classification. In ICLR

  7. [15]

    Hou, H.; Zheng, Q.; Zhao, Y.; Pouget, A.; and Gu, Y. 2019. Neural correlates of optimal multisensory decision making under time-varying reliabilities with an invariant linear probabilistic population code. Neuron, 104(5): 1010--1021

  8. [16]

    Huang, S.; Xiao, S.; Liu, W.; Lu, J.; Wu, Z.; Wang, S.; and Rajapakse, J. C. 2023. Multi-level Knowledge Integration with Graph Convolutional Network for Cancer Molecular Subtype Classification. In BIBM, 1983--1988

  9. [17]

    R.; Laurent, P.; Schultz, D

    Ito, T.; Yang, G. R.; Laurent, P.; Schultz, D. H.; and Cole, M. W. 2022. Constructing neural network models from brain data reveals representational transformations linked to adaptive behavior. Nature Communications, 13(1): 673

  10. [18]

    Jiang, T.; Xu, Q.; Ran, X.; Shen, J.; Lv, P.; Zhang, Q.; and Pan, G. 2023. Adaptive deep spiking neural network with global-local learning via balanced excitatory and inhibitory mechanism. In ICLR

  11. [19]

    R.; Liu, B.; Adly, A.; Faghihroohi, S.; and Navab, N

    Kazi, A.; Markova, V.; Kondamadugula, P. R.; Liu, B.; Adly, A.; Faghihroohi, S.; and Navab, N. 2022. DG-GRU: dynamic graph based gated recurrent unit for age and gender prediction using brain imaging. In Medical Imaging 2022: Computer-Aided Diagnosis, volume 12033, 291--295

  12. [20]

    Lan, C.; Yang, Y.; Li, X.; Luo, B.; and Huan, J. 2017. Learning social circles in ego-networks based on multi-view network structure. IEEE Transactions on Knowledge and Data Engineering, 29(8): 1681--1694

  13. [21]

    Li, D.; Wang, T.; Chen, J.; Kawaguchi, K.; Lian, C.; and Zeng, Z. 2024. Multi-view class incremental learning. Information Fusion

  14. [22]

    N.; and Huan, J

    Li, X.; Chandrasekaran, S. N.; and Huan, J. 2017. Lifelong multi-task multi-view learning using latent spaces. In IEEE Big Data, 37--46

  15. [23]

    Li, Z.; Tang, C.; Liu, X.; Zheng, X.; Zhang, W.; and Zhu, E. 2021. Consensus graph learning for multi-view clustering. IEEE Transactions on Multimedia, 24: 2461--2472

  16. [24]

    Lu, J.; Wu, Z.; Chen, Z.; Cai, Z.; and Wang, S. 2024 a . Towards Multi-view Consistent Graph Diffusion. In ACM Multimedia, 186--195

  17. [25]

    Lu, J.; Wu, Z.; Zhong, L.; Chen, Z.; Zhao, H.; and Wang, S. 2024 b . Generative Essential Graph Convolutional Network for Multi-View Semi-Supervised Classification. IEEE Transactions on Multimedia, 26: 7987--7999

  18. [26]

    Luo, Y.; Song, G.; Li, P.; and Qi, Z. 2018. Multi-task medical concept normalization using multi-view convolutional neural network. In AAAI, volume 32

  19. [27]

    Y.; and Ragin, A

    Ma, G.; Lu, C.-T.; He, L.; Philip, S. Y.; and Ragin, A. B. 2017. Multi-view graph embedding with hub detection for brain network analysis. In ICDM, 967--972

  20. [28]

    E.; and Boularias, A

    Mitash, C.; Bekris, K. E.; and Boularias, A. 2017. A self-supervised learning system for object detection using physics simulation and multi-view pose estimation. In IROS, 545--551

  21. [29]

    V.; Ernst, M

    Pesnot Lerousseau, J.; Parise, C. V.; Ernst, M. O.; and van Wassenhove, V. 2022. Multisensory correlation computations in the human brain identified by a time-resolved encoding model. Nature Communications, 13(1): 2489

  22. [30]

    Pi, Y.; Wu, Y.; Huang, Y.; Shi, Y.; and Wang, S. 2024. Inhomogeneous Diffusion-Induced Network for Multiview Semi-Supervised Classification. IEEE Transactions on Neural Networks and Learning Systems

  23. [31]

    Shen, J.; Ni, W.; Xu, Q.; and Tang, H. 2024. Efficient spiking neural networks with sparse selective activation for continual learning. In AAAI, volume 38, 611--619

  24. [32]

    T.; Yang, J.; and Wang, S

    Song, N.; Du, S.; Wu, Z.; Zhong, L.; Yang, L. T.; Yang, J.; and Wang, S. 2024. GAF-Net: Graph attention fusion network for multi-view semi-supervised classification. Expert Systems with Applications, 238: 122151

  25. [33]

    Sun, G.; Cong, Y.; Li, J.; and Fu, Y. 2018. Robust lifelong multi-task multi-view representation learning. In ICBK, 91--98

  26. [34]

    Sun, G.; Cong, Y.; Zhang, Y.; Zhao, G.; and Fu, Y. 2020. Continual multiview task learning via deep matrix factorization. IEEE Transactions on Neural Networks and Learning Systems, 32(1): 139--150

  27. [35]

    A.; Hippe, D

    Thammasorn, P.; Chaovalitwongse, W. A.; Hippe, D. S.; Wootton, L. S.; Ford, E. C.; Spraker, M. B.; Combs, S. E.; Peeken, J. C.; and Nyflot, M. J. 2021. Nearest neighbor-based strategy to optimize multi-view triplet network for classification of small-sample medical imaging dat...

  28. [36]

    S.; and Kumar, A

    Triche, A.; Maida, A. S.; and Kumar, A. 2022. Exploration in neo-Hebbian reinforcement learning: Computational approaches to the exploration--exploitation balance with bio-inspired neural networks. Neural Networks, 151: 16--33

  29. [37]

    M.; Tuytelaars, T.; and Tolias, A

    Van de Ven, G. M.; Tuytelaars, T.; and Tolias, A. S. 2022. Three types of incremental learning. Nature Machine Intelligence, 4(12): 1185--1197

  30. [38]

    Veli c kovi \'c , P.; Cucurull, G.; Casanova, A.; Romero, A.; Li \`o , P.; and Bengio, Y. 2018. Graph Attention Networks. In ICLR

  31. [39]

    Wan, X.; Liu, J.; Liang, W.; Liu, X.; Wen, Y.; and Zhu, E. 2022. Continual multi-view clustering. In ACM Multimedia, 3676--3684

  32. [40]

    Wan, X.; Liu, J.; Liu, X.; Wen, Y.; Yu, H.; Wang, S.; Yu, S.; Wan, T.; Wang, J.; and Zhu, E. 2024 a . Decouple then Classify: A Dynamic Multi-view Labeling Strategy with Shared and Specific Information. In ICML

  33. [41]

    Wan, X.; Liu, X.; Liu, J.; Wang, S.; Wen, Y.; Liang, W.; Zhu, E.; Liu, Z.; and Zhou, L. 2023. Auto-weighted multi-view clustering for large-scale data. In AAAI, 10078--10086

  34. [42]

    Wan, X.; Xiao, B.; Liu, X.; Liu, J.; Liang, W.; and Zhu, E. 2024 b . Fast continual multi-view clustering with incomplete views. IEEE Transactions on Image Processing

  35. [43]

    Wang, M.; Lin, Y.; Lin, G.; Yang, K.; and Wu, X.-m. 2020. M2GRL: A multi-task multi-view graph representation learning framework for web-scale recommender systems. In SIGKDD, 2349--2358

  36. [44]

    Wang, Q.; Sun, G.; Dong, J.; Wang, Q.; and Ding, Z. 2021. Continuous Multi-View Human Action Recognition. IEEE Transactions on Circuits and Systems for Video Technology, 32(6): 3603--3614

  37. [45]

    Wang, R.; Nie, F.; Wang, Z.; Hu, H.; and Li, X. 2019. Parameter-free weighted multi-view projected clustering with structured graph learning. IEEE Transactions on Knowledge and Data Engineering, 32(10): 2014--2025

  38. [46]

    Wang, W.; Arora, R.; Livescu, K.; and Bilmes, J. 2015. On deep multi-view representation learning. In ICML, 1083--1092

  39. [47]

    Wen, Y.; Liu, S.; Wan, X.; Wang, S.; Liang, K.; Liu, X.; Yang, X.; and Zhang, P. 2023. Efficient Multi-View Graph Clustering with Local and Global Structure Preservation. In ACM Multimedia, 3021--3030

  40. [48]

    Wu, Y.; Zhao, R.; Zhu, J.; Chen, F.; Xu, M.; Li, G.; Song, S.; Deng, L.; Wang, G.; Zheng, H.; et al. 2022. Brain-inspired global-local learning incorporated with neuromorphic computing. Nature Communications, 13(1): 65

  41. [49]

    Wu, Z.; Chen, Z.; Du, S.; Huang, S.; and Wang, S. 2024. Graph Convolutional Network with elastic topology. Pattern Recognition, 151: 110364

  42. [50]

    Wu, Z.; Lin, X.; Lin, Z.; Chen, Z.; Bai, Y.; and Wang, S. 2023. Interpretable graph convolutional network for multi-view semi-supervised learning. IEEE Transactions on Multimedia, 25: 8593--8606

  43. [51]

    Wu, Z.; Zhang, Z.; and Fan, J. 2023. Graph Convolutional Kernel Machine versus Graph Convolutional Networks. In NeurIPS, volume 36, 19650--19672

  44. [52]

    Xiao, M.; Meng, Q.; Zhang, Z.; He, D.; and Lin, Z. 2023. Hebbian Learning based Orthogonal Projection for Continual Learning of Spiking Neural Networks. In ICLR

  45. [53]

    Yan, X.; Gan, Y.; Mao, Y.; Ye, Y.; and Yu, H. 2024. Live and Learn: Continual Action Clustering with Incremental Views. In AAAI, volume 38, 16264--16271

  46. [54]

    Yang, D.; Zhou, Y.; Zhang, A.; Sun, X.; Wu, D.; Wang, W.; and Ye, Q. 2022. Multi-view correlation distillation for incremental object detection. Pattern Recognition, 131: 108863

  47. [55]

    L.; and Fan, J

    Yu, J.; Wu, Z.; Cai, J.; Jia, A. L.; and Fan, J. 2024. Kernel Readout for Graph Neural Networks. In IJCAI, 2505--2514

  48. [56]

    Zenke, F.; Poole, B.; and Ganguli, S. 2017. Continual learning through synaptic intelligence. In ICML, 3987--3995

  49. [57]

    Zhang, A.; Zhou, H.; Li, X.; and Zhu, W. 2019. Fast and robust learning in spiking feed-forward neural networks based on intrinsic plasticity mechanism. Neurocomputing, 365: 102--112

  50. [58]

    Zhang, J.; Gu, Y.; Chen, A.; and Yu, Y. 2022. Unveiling Dynamic System Strategies for Multisensory Processing: From Neuronal Fixed-Criterion Integration to Population Bayesian Inference. Research

  51. [59]

    I.; Huang, X.; Wan, M.; Borgheai, S

    Zhu, S.; Hosni, S. I.; Huang, X.; Wan, M.; Borgheai, S. B.; McLinden, J.; Shahriari, Y.; and Ostadabbas, S. 2023. A dynamical graph-based feature extraction approach to enhance mental task classification in brain--computer interfaces. Computers in Biology and Medicine, 153: 106498

  52. [60]

    Zhuang, S.; Huang, S.; Huang, W.; Chen, Y.; Wu, Z.; and Liu, X. 2024. Enhancing Multi-view Graph Neural Network with Cross-view Confluent Message Passing. In ACM Multimedia, 10065--10074

  53. [61]

    Zou, D.; Wei, W.; Mao, X.-L.; Wang, Z.; Qiu, M.; Zhu, F.; and Cao, X. 2022. Multi-level cross-view contrastive learning for knowledge-aware recommender system. In SIGIR, 1358--1368

  54. [62]

    Zou, Y.; Fang, Z.; Wu, Z.; Zheng, C.; and Wang, S. 2024. Revisiting multi-view learning: A perspective of implicitly heterogeneous Graph Convolutional Network. Neural Networks, 169: 496--505

Pith tools

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