Pith. sign in

REVIEW 3 major objections 5 minor 18 references

Simple Graph Contrastive Learning via Fractional-order Neural Diffusion Networks

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

Pith's one-line read The paper proposes that two fractional-diffusion encoders with different derivative orders produce local and global views, and that contrasting these views yields strong unsupervised node classification without augmentations or negative…

desk verdict The empirical recipe is strong and the heterophilic gains look real, but the paper's theoretical story is proven for a different regime than the one actually trained, so the local/global view claim is currently an intuition supported by ablations rather than a theorem covering the model. read the letter →

arxiv 2504.16748 v2 pith:7SGMG7ZA submitted 2025-04-23 cs.LG

classification cs.LG
keywords fractionaldifferentialequationsgraphneuraldiffusioncontrastivelearningaugmentation-freeheterophilicgraphsnodeclassificationspectraltheorydimensioncollapse
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 proposes a contrastive learning method for graphs that needs neither data augmentation nor negative samples. It uses two learnable encoders whose feature evolution is governed by fractional differential equations with different derivative orders $\alpha_1 < \alpha_2$. The claim is that the small-order encoder retains local, high-frequency detail while the large-order encoder yields global, smooth structure, so the two outputs form naturally distinct views of the same graph. Training pulls the views together with a mean-cosine loss plus a term that penalizes the angle between their dominant directions, preventing dimension collapse. On node-classification benchmarks, including heterophilic graphs where augmentation-based methods struggle, the method reports the best accuracy on most datasets.

What carries the argument

The load-bearing object is the fractional derivative $D_t^{\alpha}$, an integral-based operator that gives the feature evolution memory of its own past. Solving the fractional diffusion equation mode-by-mode in the eigenbasis of the normalized graph Laplacian turns the dynamics into a scalar fractional relaxation per frequency, whose solution is expressed through the Mittag-Leffler function $e_\alpha(\lambda, t) = \sum_{n \geq 0} (-1)^n \lambda^n t^{\alpha n} / \Gamma(\alpha n + 1)$. An asymptotic expansion of this function yields the comparison of Fourier coefficients that separates local from global information. The second device is the regularized cosmean loss $L(Z_1, Z_2) = L_0(Z_1, Z_2) + \eta |\langle c_1, c_2\rangle|$, where $c_1, c_2$ are the unit direction vectors of the dominant components of the two views; the penalty keeps the views from collapsing into a single representation.

What would settle it

Take a connected graph, fix $F(W, Z) = -(I-A)Z$, and compute the Fourier coefficients of the two encoders' outputs at the finite diffusion time $T$ used in training. If the ratio of the small-order coefficients to the large-order coefficients does not increase with graph frequency, meaning the small-order encoder does not retain relatively more high-frequency energy, the claimed local/global view separation fails. A second check runs the same comparison on a graph with several disconnected components to test whether connectivity is essential.

Watch

Extended reading notes

Core claim

The central discovery is a spectral separation principle: with fractional-order diffusion, the derivative order $\alpha$ controls how quickly graph-frequency components are damped. For $0 < \alpha_1 < \alpha_2 \leq 1$ and large diffusion time, the features from order $\alpha_2$ are dominated by smooth components corresponding to small eigenvalues of the normalized Laplacian, while the features from order $\alpha_1$ retain more energy in spiky high-frequency components; the difference grows with $\alpha_2 - \alpha_1$. The paper proves this for the left fractional derivative, linear diffusion $F(W, Z) = -(I-A)Z$, a connected graph, and the asymptotic regime $\tau \to \infty$ with a fixed number of skip iterations, by showing that the Fourier coefficients satisfy $c_{\alpha_l, i}(T) = \left(\sum_{j=0}^{n_l} b_{\alpha_l, i, j} \tau^{-j \alpha_l} + O(1/\tau)\right) c_i$ with positive coefficients $b$ that decrease in the frequency index $i$ and are larger for the smaller order. On this basis, the paper argues that the two encoders give local and global views, and that a regularized mean-cosine loss can contrast them without negatives.

Load-bearing premise

The whole method rests on the assumption that the local/global distinction proven for a connected graph, a purely linear diffusion, the left fractional derivative, and asymptotically large diffusion time still holds in the finite, learned, possibly disconnected settings where the model is actually trained.

Editorial extensions

If this is right

  • Unsupervised node classification improves on heterophilic graphs; the paper reports relative gains of 9.87% on Squirrel, 5.2% on Chameleon, and 6.22% on Texas over the second-best baseline.
  • The method removes two design choices at once: no data augmentations and no negative samples, so the contrastive pipeline reduces to choosing two orders $\alpha_1, \alpha_2$ and the diffusion time $T$.
  • Separating the orders matters: ablations with $\alpha_1 = \alpha_2$ underperform configurations with $\alpha_1 < \alpha_2$, and larger $\alpha_2 - \alpha_1$ generally helps, in line with the theorem's prediction.
  • The regularized cosmean loss stays stable over training epochs, whereas plain Euclidean, VICReg, Barlow Twins, and unregularized cosmean losses degrade; the regularization is credited with preventing dimension collapse.
  • With the basic GRAND-type diffusion, the FDE encoders run in $O(EC + E \log E + N)$ per epoch with fast convolution, and the paper reports per-epoch training times on the large Ogbn-Arxiv graph far below the compared augmentation-free baselines.

Reading between the lines

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

  • The spectral separation principle is more general than the fractional-diffusion solver used here: any pair of encoders whose frequency responses decay at different rates should produce similarly useful contrastive views, so the mechanism could be transferred to cheap linear filters or polynomial spectral filters.
  • Because the formal theorem assumes a connected graph, disconnected or near-disconnected graphs may need a spectral shift or regularization; this is a testable boundary of the method, not a claim made in the paper.
  • The regularized-cosmean idea of penalizing the alignment of dominant component directions could be lifted into other non-contrastive losses to stabilize training, independent of fractional diffusion.
  • The optimal $\alpha_1$ varies strongly across datasets (0.001 on Roman-empire, 0.99 on Arxiv-year), which suggests that data-driven or adaptive order selection, which the paper names as future work, may be where the next gains come from.
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

3 major / 5 minor

Summary. The paper proposes FD-GCL, an augmentation-free graph contrastive learning method in which two encoders are governed by fractional-order differential equations (FDEs) with different fractional orders α1 < α2. The central claim is that the lower-order encoder captures local detail while the higher-order encoder captures global structure, providing the distinct views needed for contrastive learning. The model uses a regularized cosine-mean loss without negative samples, and the authors report state-of-the-art or competitive unsupervised node classification on both homophilic and heterophilic benchmarks, together with ablations, complexity analysis, and qualitative visualizations.

Significance. If the local/global view-diversity mechanism is valid, FD-GCL is a simple and scalable contribution to augmentation-free GCL: it removes both data augmentation and negative sampling, is applicable to heterophilic graphs, and is supported by a broad empirical study with public splits, ten seeds, and consistent ablation results. The paper also provides a theoretical analysis via Mittag-Leffler asymptotics, which is commendable in principle. However, the formal theorem that carries the load for the view-diversity claim is proved under assumptions that the trained model does not satisfy, and the proof itself contains a questionable comparison of asymptotic terms. These issues are central rather than cosmetic, so the theoretical justification requires substantial revision even though the empirical results are promising.

major comments (3)
  1. [Appendix E, Theorem 2 vs. Section 4.3 and Table 8] The formal view-separation result is proved for a regime that is not the one used in training. Theorem 2 assumes the left fractional derivative, F(W,Z)=-(I-A)Z, a connected graph, 0<α1<α2<1, a shared input signal x for both encoders, a fixed number m of skip iterations, and the asymptotic τ→∞. The trained model instead uses the discretization step h as the skip interval with finite T (so m=T/h is large and τ=h is small), α2=1 is used on every dataset in Table 8, the two encoders apply different learnable matrices W1 and W2 before diffusion, and the real graphs are not checked for connectivity. Consequently, Theorem 2 does not formally cover the evaluated model, and the claimed correspondence α1↔local, α2↔global is not established for FD-GCL as trained. The t-SNE and PCA evidence in Section 4.2 is qualitative and self-referential; a quantitative spectral check on the trained encoders, or a theorem for finite T, is needed to support the mechanism claim.
  2. [Appendix E, proof of Theorem 2(c)] The proof of part (c) compares coefficients b_{α1,i,j} and b_{α2,i,j} that multiply different powers of τ in the asymptotic expansions: b_{α1,i,j} multiplies τ^{-jα1} while b_{α2,i,j} multiplies τ^{-jα2}. Since the powers themselves differ, the inequality b_{α1,i,j}>b_{α2,i,j} is not a well-posed comparison without first specifying the same τ-dependent term or proving dominance of the whole sums. In addition, the expression after Eq. (12) writes e_{α1}(λ,τ)^k as if the asymptotic expansion of e_{α1} could be exponentiated term-by-term with a single O(1/τ) remainder; this step is not justified. The issue is load-bearing because (c) is what makes the local/global contrast quantitative.
  3. [Appendix E, last paragraph vs. Table 8] The text states that 'for most datasets studied in the paper, we choose α1≤0.1 and α2>0.5', but Table 8 reports α1=0.75 for Pubmed, 0.94 for Computer, 0.9 for Photo, 0.9 for Squirrel, 0.9 for Chameleon, and 0.99 for Arxiv-year. For these configurations the claimed local/global contrast between α1 and α2=1 is minimal, so the theoretical rationale does not apply to a substantial portion of the experimental evaluation. This inconsistency should be resolved either by revising the claim or by explaining why small α2-α1 still yields sufficiently diverse views.
minor comments (5)
  1. [Section 5.3 and Appendix F.4] The Barlow Twins loss formula contains a typo: the second sum is written with C_ii, but it should be over off-diagonal entries C_ij (or C_ij^2).
  2. [Figures 5 and 6] The legend entry 'Barlow T wins' appears to be a rendering artifact of 'Barlow Twins'; please correct the label in both figures.
  3. [Appendix F.3] There is a duplicated word in the sentence about the weight β: 'and and the regularization weight η'.
  4. [Section 4.3] The definition of c1 and c2 as 'unit directional vectors of their respective dominant components' is informal; specifying the PCA computation (e.g., first principal component of which matrix, after which normalization) would make the regularized loss reproducible.
  5. [Appendix E] The theorem is stated for the left fractional derivative, but the implementation section does not state which fractional-derivative definition and which numerical scheme from Kang et al. (2024) are used; this gap should be mentioned explicitly.

Circularity Check

0 steps flagged · score 2.0 of 10

No material circularity: the local/global view separation follows from a self-contained spectral analysis of fractional diffusion, and the contrastive gains are tested against external baselines.

full rationale

The paper's load-bearing theoretical claim (Theorems 1-2) is derived directly in Appendix E from the fractional diffusion equation D_t^alpha z = -L z. After eigendecomposition, the Fourier coefficient of the skipped output is c_{alpha,i}(T) = (1 + e_alpha(lambda_i,tau) + ... + e_alpha(lambda_i,tau)^m) c_i (Eq. 10), and the Erdelyi asymptotic expansion (Eq. 11) yields the coefficient comparisons b_{alpha1,i,j} > b_{alpha2,i,j} and monotonicity in i. The local/global interpretation then follows the standard GSP convention that low graph frequencies are smooth/global and high frequencies spiky/local; this is a definitional mapping, not a fitted output. The regularized cosmean loss L = L0 + eta*|<c1,c2>| is motivated by the model's own PCA (Fig. 2), but its success is evaluated by held-out node classification against external baselines, so no fitted parameter is renamed as a prediction. The self-referential elements are mild: citations to the authors' prior FROND work (Kang et al. 2024) supply the FDE numerical scheme and evidence of supervised encoder quality, and the t-SNE/PCA figures of the model's own embeddings are qualitative illustrations of Theorem 1. Neither carries the load of the central claim, which is proved from external fractional-calculus references (Stinga 2023; Erdelyi et al. 1955). The gap between Theorem 2's regime (fixed m, tau -> infinity, alpha2 < 1, connected graph, shared input x) and the trained model (finite T, large m, alpha2 = 1, separate learnable W1 and W2) is a proof-applicability concern and a correctness risk, not circularity, because the training objective and test labels nowhere assume the theorem's conclusion.

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

The core derivation relies on standard fractional-calculus solutions and an asymptotic expansion, plus the practical assumption that the asymptotic regime extends to the model's finite-time, learned setting. The main free parameters are hyperparameters tuned per dataset on validation accuracy; alpha1 is the one most directly tied to the claimed local/global view mechanism. No invented entities are introduced.

free parameters (7)
  • alpha1 (order of the local-detail encoder) = 0.001 to 0.94, e.g., 0.01 for Cora and Wisconsin
    Tuned per dataset on validation accuracy (Table 8). It is the main knob claimed to control local vs global view content.
  • alpha2 (order of the global encoder) = 1 for all datasets
    Set to the integer-derivative limit to maximize alpha2 - alpha1 and obtain a strongly smoothed view (Appendix F.3).
  • diffusion time T = 1 to 40 depending on dataset
    Selected per dataset; the asymptotic regime in Theorem 2 requires large tau, while Table 8 uses finite values.
  • discretization step h = 0.15 to 10 depending on dataset
    Numerical solver step chosen per dataset; interacts with the validity of the asymptotic analysis.
  • regularization weight eta = 0.01 to 0.2
    Controls the strength of the dominant-PCA push-apart term; tuned per dataset on validation accuracy.
  • combination weight beta = 0.15 to 0.96
    Averages Z1 and Z2 for the downstream classifier; tuned per dataset.
  • hidden dimension d = 256, 512, 1024, 2048, or 4096
    Per-dataset grid-selected feature dimension that affects representation capacity.
assumptions (6)
  • standard math For each eigencomponent, the fractional diffusion D_t^alpha c = -lambda c is solved by the Mittag-Leffler-type function e_alpha(lambda,t).
    Used in Appendix E to reduce the graph FDE to scalar fractional ODEs on Laplacian eigenvectors; cited to Stinga (2023).
  • standard math The large-time asymptotic expansion e_alpha(lambda,tau) = sum_{j=1}^{n} tau^{-j alpha}/(lambda^j Gamma(1-j alpha)) + O(1/tau) holds with positive coefficients for j <= n.
    Equation (11) in Appendix E, attributed to Erdelyi et al. (1955); the ordering of spectral coefficients in the proof depends on it.
  • domain assumption The graph is connected, so the second Laplacian eigenvalue lambda2 > 0.
    Stated in Theorem 2 of Appendix E; not checked for every benchmark graph such as Computer, Photo, or Wikipedia networks.
  • domain assumption The left fractional derivative is the operative definition of D_t^alpha, and the numerical solver from FROND (Kang et al., 2024) faithfully simulates it.
    Sections 4.1 and Appendix D; the theoretical claims and experiments are tied to this specific fractional derivative and solver.
  • standard math Smooth Laplacian eigenvectors represent global structure and spiky eigenvectors represent local details.
    Standard graph-signal-processing interpretation (Shuman et al., 2013) used to translate Theorem 1 into the local/global view claim in Section 4.2.
  • domain assumption FDE encoders that perform well in supervised settings also produce high-quality unsupervised embeddings.
    Section 4.2 states the model benefits from the proven supervised performance of FDE encoders; this underpins the encoder-quality claim.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Simple Graph Contrastive Learning via Fractional-order Neural Diffusion Networks." pith.science (2026). https://pith.science/paper/7SGMG7ZA

@misc{pith2026250416748,
  author       = {Pith},
  title        = {Pith review of: Simple Graph Contrastive Learning via Fractional-order Neural Diffusion Networks},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/7SGMG7ZA}},
  note         = {Machine review of arXiv:2504.16748}
}
read the original abstract

Graph Contrastive Learning (GCL) has recently made progress as an unsupervised graph representation learning paradigm. GCL approaches can be categorized into augmentation-based and augmentation-free methods. The former relies on complex data augmentations, while the latter depends on encoders that can generate distinct views of the same input. Both approaches may require negative samples for training. In this paper, we introduce a novel augmentation-free GCL framework based on graph neural diffusion models. Specifically, we utilize learnable encoders governed by Fractional Differential Equations (FDE). Each FDE is characterized by an order parameter of the differential operator. We demonstrate that varying these parameters allows us to produce learnable encoders that generate diverse views, capturing either local or global information, for contrastive learning. Our model does not require negative samples for training and is applicable to both homophilic and heterophilic datasets. We demonstrate its effectiveness across various datasets, achieving state-of-the-art performance.

Figures

Figures reproduced from arXiv: 2504.16748 by the authors.

Figure 2
Figure 2. [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 1
Figure 1. The t-SNE visualizations of node features from a single class, generated by encoders with different FDE order parameters. For comparison, features are linearly translated to align class av￾erages. The datasets used are Cora (homophilic) and Wisconsin (heterophilic). The visualizations demonstrate that the two en￾coders produce embeddings with distinct characteristics. A smaller α produces features with a concentrate… view at source ↗
Figure 3
Figure 3. The variation in the ratio rc during training. Each curve represents a label class. The ratio rc for the input features is shown at epoch 0. We see that the ratio generally increases at the begin￾ning of the training and stabilizes. This suggests that the encoders indeed have good clustering capabilities (as compared with the input). 4.3. The FD-GCL Model We are now in a position to provide the full details of the p… view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: The overall proposed contrastive learning framework of FD-GCL. We choose α1 < α2 for the encoders. we use three citation graphs: Cora, Citeseer, and Pubmed, as well as two co-purchase datasets: Computer and Photo. We also include a large-scale homophilic dataset, Ogbn-…
Figure 5
Figure 5. Figure 5: Accuracy vs. training epochs for various loss functions on the Cora and Wisconsin datasets. edge set size and d the dimensionality of the features. The total complexity for solving the FDE is O [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: presents additional classification accuracy results on two benchmark datasets: Cornell and Squirrel, evaluated above various contrastive loss functions. Consistent with the findings in the main text, these results further underscore the effectiveness of our proposed Re…
Figure 7
Figure 7. Figure 7: Cora: labels 1 and 2 21 [PITH_FULL_IMAGE:figures/full_fig_p021_7.png]
Figure 8
Figure 8. Figure 8: Cora: labels 3 and 4 150 100 50 0 50 100 t-SNE Dimension 1 150 100 50 0 50 100 t-SNE Dimension 2 Cora: Label 5 FDE with 1 = 0.01 FDE with 2 = 1 Class average 150 100 50 0 50 100 t-SNE Dimension 1 150 100 50 0 50 100 t-SNE Dimension 2 Cora: Label 6 FDE with 1 = 0.01 FDE…
Figure 9
Figure 9. Figure 9: Cora: labels 5 and 6 1500 1250 1000 750 500 250 0 250 t-SNE dimension 1 600 400 200 0 200 400 600 t-SNE dimension 2 Wisconsin: Label 0 FDE with 1 = 0.01 FDE with 2 = 1 Class average 50 25 0 25 50 75 100 125 t-SNE dimension 1 75 50 25 0 25 50 75 100 t-SNE dimension 2 Wi…
Figure 10
Figure 10. Figure 10: Wisconsin: labels 0 and 1 22 [PITH_FULL_IMAGE:figures/full_fig_p022_10.png]
Figure 11
Figure 11. Figure 11: Wisconsin: labels 3 and 4 G.2. Node Classification Results for Different Diffusion Equations We also report node classification results using alternative choices for F in (2), such as CDE (5) and GREAD (8). The results, presented in [PITH_FULL_IMAGE:figures/full_fig_…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

18 extracted references · 15 canonical work pages

  1. [1]

    We focus on a special case defined as follows: eα(λ,t ) = ∞X n=0 (−1)n λntαn Γ(αn + 1), λ> 0, t≥

    To do this, we need the Mittag-Leffler functions, which were introduced by Mittag-Leffler in 1903 in the form of a Maclaurin series. We focus on a special case defined as follows: eα(λ,t ) = ∞X n=0 (−1)n λntαn Γ(αn + 1), λ> 0, t≥

  2. [6]

    HGRL relies on graph augmentations, while DSSL assumes a graph generation process, which may not always reflect real-world graphs

    extend unsupervised learning to nonhomophilous graphs by capturing global and high-order information. HGRL relies on graph augmentations, while DSSL assumes a graph generation process, which may not always reflect real-world graphs. While these methods have advanced graph contrastive learning, augmentation-based approaches face limitations. Their performa...

  3. [7]

    SP-GCL (Wang et al., 2023), on the other hand, effectively handles heterophilic graphs by capturing both low- and high-frequency components

    avoids augmentations but focuses on homophilous graphs. SP-GCL (Wang et al., 2023), on the other hand, effectively handles heterophilic graphs by capturing both low- and high-frequency components. GraphACL (Xiao et al.,

  4. [8]

    Building on the BGRL framework, AFGRL eliminates the need for augmentations by generating positive samples directly from the original graph for each node

    addresses the limitations of augmentation- dependent methods like BGRL and GCA (Zhu et al., 2021), where representation quality heavily depends on the choice of augmentation schemes. Building on the BGRL framework, AFGRL eliminates the need for augmentations by generating positive samples directly from the original graph for each node. This approach captu...

  5. [9]

    It maximizes the correlation between two augmented views of the same input while decorrelating the feature dimensions within a single view’s representation

    introduces an unsupervised learning framework for graphs without relying on negative sample pairs. It maximizes the correlation between two augmented views of the same input while decorrelating the feature dimensions within a single view’s representation. These advancements highlight promising alternatives to traditional graph contrastive learning methods...

  6. [11]

    Replacing d/ dt withDα t , one obtains its FDE version as Dα t Y(t) =σ (Fθ(Z(t),t ))−γZ(t)−νY(t) Dα t Z(t) = Y(t)

    is equivalent to a system of equations: dY(t) dt =σ (Fθ(Z(t),t ))−γZ(t)−νY(t) dZ(t) dt = Y(t). Replacing d/ dt withDα t , one obtains its FDE version as Dα t Y(t) =σ (Fθ(Z(t),t ))−γZ(t)−νY(t) Dα t Z(t) = Y(t). A numerical solver is provided in Kang et al. (2024). E. Theoretical Discussions In this section, we provide a rigorous discussion of the formal ve...

  7. [13]

    (c) For fixed i andj, we havebα1,i,j >b α2,i,j

    (b) For fixed l andj, the coefficientbαl,i,j is decreasing w.r.t.i. (c) For fixed i andj, we havebα1,i,j >b α2,i,j. 15 Simple Graph Contrastive Learning via Fractional-order Neural Diffusion Networks Proof. Let L = UΛU⊺ be the orthogonal eigendecomposition of L. As L is positive semi-definite, its (ordered) eigenvalues satisfy 0 =λ1 <λ 2≤λ3... ≤λN . Notic...

  8. [14]

    These datasets are among the most widely used benchmarks for node classification

    Statistics of homophilic and heterophilic graph datasets Dataset Nodes Edges Classes Node Features Data splits Cora 2708 5429 7 1433 standard Citeseer 3327 4732 6 3703 standard PubMed 19717 88651 3 500 standard Computer 13752 574418 10 767 10%/10%/80% Photo 7650 119081 8 745 10%/10%/80% Ogbn-arxiv 169343 1166243 40 128 standard Texas 183 309 5 1793 48%/32...

Show all 18 references
  1. [15]

    Each node represents a word (possibly non-unique) in the text, with features based on word embeddings

    is a heterophilous graph derived from the English Wikipedia article on the Roman Empire. Each node represents a word (possibly non-unique) in the text, with features based on word embeddings. Node classes correspond to syntactic roles, with the 17 most frequent roles as distin...

  2. [16]

    Nodes represent papers, and edges indicate citation relationships

    is a citation network derived from a subset of the Microsoft Academic Graph, focusing on predicting the publication year of papers. Nodes represent papers, and edges indicate citation relationships. Node features are computed as the average of word embeddings from the titles a...

  3. [17]

    Contrastive Loss Functions In the absence of explicit negative samples, non-contrastive methods focus on maximizing agreement among positive samples

    Details of the hyperparameters tuned by grid search on various datasets Datasets T h d lr weight decay epochs α1 α2 β η Cora 20 1 256 0.01 0.0005 30 0.01 1 0.55 0.15 Citeseer 6 0.4 2048 0.015 0.0005 15 0.08 1 0.55 0.15 Pubmed 3 0.5 4096 0.02 0.0005 1 0.75 1 0.85 0.2 Computer 3...

  4. [18]

    The definitions of Euclidean loss, Cosmean loss, Barlow Twins loss, and VICReg loss are provided below

    and VICReg (Bardes et al., 2022). The definitions of Euclidean loss, Cosmean loss, Barlow Twins loss, and VICReg loss are provided below. 19 Simple Graph Contrastive Learning via Fractional-order Neural Diffusion Networks Let Z1 and Z2 denote two feature representations fed in...

  5. [2010]

    One can find other approaches and more discussions in Tarasov (2011)

    is defined as Dα tf(t) = 1 Γ(1−α) Z t 0 f′(τ) (t−τ)α dτ. One can find other approaches and more discussions in Tarasov (2011). 14 Simple Graph Contrastive Learning via Fractional-order Neural Diffusion Networks D.2. Incorporating FDE To build a diffusion model based on FDE, it...

  6. [2020]

    Graph contrastive learning with adaptive augmentation

    Zhu, Y ., Xu, Y ., Yu, F., Liu, Q., Wu, S., and Wang, L. Graph contrastive learning with adaptive augmentation. In Proc. Web Conf., pp. 2069–2080,

  7. [2021]

    Zhang, H., Wu, Q., Wang, Y ., Zhang, S., Yan, J., and Yu., P. S. Localized contrastive learning on graphs. arXiv preprint arXiv:2212.04604,

  8. [2022]

    A fractional graph Laplacian approach to oversmoothing

    Maskey, S., Paolino, R., Bacho, A., and Kutyniok, G. A fractional graph Laplacian approach to oversmoothing. arXiv preprint arXiv:2305.13084,

  9. [2023]

    Fast training of convolutional networks through FFTs

    9 Simple Graph Contrastive Learning via Fractional-order Neural Diffusion Networks Mathieu, M., Henaff, M., and LeCun, Y . Fast training of convolutional networks through FFTs. arXiv preprint arXiv:1312.5851,

  10. [2024]

    Deep graph contrastive representation learning

    Zhu, Y ., Xu, Y ., Yu, F., Liu, Q., Wu, S., and Wang, L. Deep graph contrastive representation learning. arXiv preprint arXiv:2006.04131,

Pith tools

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