REVIEW 4 major objections 7 minor 2 cited by
Hyperbolic Hypergraph Neural Networks for Multi-Relational Knowledge Hypergraph Representation
T0 review · 4 major / 7 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read H2GNN: a hyperbolic hypergraph encoder that directly models multi-relational knowledge hypergraphs and beats 15 existing methods.
desk verdict Useful encoder idea with a promising ablation, but the SOTA claim rests on an underspecified link-prediction protocol; worth reviewing after the authors disclose filtered/raw ranking, curvature, splits, and baseline provenance. 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 mechanism is the hyper-star message-passing scheme, a two-stage aggregation designed for multi-relational knowledge hypergraphs. In the first stage, nodes of a hyperedge are aggregated by a Lorentz centroid into a hyperedge embedding; in the second, each node is updated by a centroid composition of its own embedding, the hyperedge embedding, the hyper-relation embedding, and a position-aware embedding indexed by relation type and entity position (relations like Roster-1, Roster-2, Roster-3). The position expansion is what turns a hyperedge into a tree-like hierarchy, and the Lorentz centroid is the operation that keeps the whole procedure fully hyperbolic; the linear transformation used to map embeddings between hyperboloid layers follows a fully hyperbolic construction that guarantees outputs remain on the hyperboloid.
What would settle it
Reproduce H2GNN and all 15 baselines in one codebase with identical filtered/raw ranking, identical negative samples, and identical train/validation/test splits, and check whether the Hits@1, Hits@10, MRR, and accuracy differences survive; if they shrink to within one standard deviation, the central claim is refuted.
Extended reading notes
Core claim
The central discovery claimed by the paper is that a hypergraph neural network can learn multi-relational knowledge hypergraph representations without decomposing hyperedges into binary relations or treating them as isolated. H2GNN expands each hyperedge (r, x1, ..., xm) into a position-labelled tree by creating relations r-1, ..., r-m, then performs two-stage message passing in a Lorentz space with negative curvature: centroid aggregation over the nodes of each hyperedge yields a hyperedge embedding, and a second centroid composition of the node, hyperedge, hyper-relation, and position-aware embeddings updates the node. Because the centroids and linear transformations are defined entirely inside the hyperboloid, the model avoids the common hybrid that maps vectors back and forth to the tangent space. The reported experiments show H2GNN ahead of every compared method on node classification and link prediction, and the ablation shows the largest drop when position-aware composition is removed, which the paper reads as evidence that entity position semantics matter in multi-relational knowledge hypergraphs.
Load-bearing premise
The performance advantage assumes that H2GNN's training and evaluation setup — ranking filter, negative samples, data splits, and hyperparameter choices — is directly comparable to the setup that produced the baseline numbers it is measured against.
Editorial extensions
If this is right
- If the reported results are correct, knowledge hypergraph representation learning no longer needs to flatten n-ary facts into binary triples, so high-order structure and entity-order semantics can be used directly in downstream reasoning.
- The encoder is plug-and-play: pairing H2GNN with decoders like HSimplE, mTransH, or m-DistMult improves over using those decoders alone, suggesting that structural encoding and task-specific scoring can be separated.
- Position-aware expansion gives entity order a concrete role in the embedding, which should help in domains where tuple positions encode roles such as origin, intermediate, and destination.
- Fully hyperbolic operations suggest a lower-dimensional representation can capture the scale-free, hierarchical structure of knowledge hypergraphs without the cost of tangent-space projections.
- Inductive results on evolving hypergraphs indicate the model can assign embeddings to previously unseen nodes from the historical hypergraph structure, not just classify or rank seen nodes.
Reading between the lines
- Going beyond the paper, the same position-aware expansion could be applied to any n-ary relational data where argument order matters, such as biomedical event tuples or temporal fact logs, even if the data is not organized as a knowledge base.
- The paper leaves curvature as a fixed negative scalar; a natural next test is to learn or search the curvature per dataset, since flatter or noisier graphs might favor a different geometry.
- If the evaluation protocol (filtered versus raw ranking, negative sample generation, validation splits) turns out to differ from the baselines' protocols, the numerical lead would need to be re-estimated; the architectural benefits could still stand but the headline numbers might not.
- One could stress-test the claim by swapping the simple centroid aggregator for attention-based or relation-specific aggregators in the same fully hyperbolic framework to see whether position-aware composition remains the key factor.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes H2GNN, a hyperbolic hypergraph neural network for multi-relational knowledge hypergraphs. The core idea is a hyper-star message-passing scheme that expands each hyperedge into position-specific relation slots and aggregates information in the Lorentz space via centroid operations, thereby incorporating entity positions, hyper-relation embeddings, and adjacency structure. The authors claim that H2GNN outperforms 15 baselines on node classification (co-authorship/co-citation datasets) and link prediction (JF17K and FB-AUTO knowledge hypergraphs). The node classification experiments use homogeneous hypergraphs, while the link prediction experiments are the only multi-relational evaluations.
Significance. If the empirical claims hold, H2GNN is a meaningful contribution: it is a fully hyperbolic, instance-dependent encoder for n-ary knowledge facts that avoids the information loss of clique/star decompositions and does not require per-relation hypergraph splitting. The reported gains over HypE and G-MPNN on link prediction are potentially valuable. The method is conceptually clean, with a simple centroid-based composition that is fully in hyperbolic space. However, the significance is conditional on the reproducibility of the link prediction numbers, because the evaluation protocol is not fully disclosed and the multi-relational claim rests entirely on that experiment.
major comments (4)
- [Section 4.1, Section 4.3, Table 4] The link prediction evaluation protocol is underspecified in a way that is load-bearing for the central claim. The paper does not state whether Hits@K and MRR are computed under filtered or raw ranking; it does not report the curvature value k used in the Lorentz space; it does not describe how JF17K and FB-AUTO are split into train/validation/test; and it does not state how many random seeds or runs produce the reported numbers. Because the baseline entries appear to be taken from previously published results (e.g., HypE), any mismatch in protocol—particularly filtered versus raw ranking or a different validation split—could inflate H2GNN's apparent gains. The authors must disclose the exact protocol and, ideally, rerun all baselines under the identical protocol to support the 'outperforms' claim.
- [Section 4.3, Table 4] The comparison is not actually against 15 baselines on the multi-relational link prediction task. Table 4 lists 10 baselines on FB-AUTO and only 9 on JF17K, because G-MPNN is omitted on JF17K after a two-day timeout. The abstract claims comparison with 15 baselines, but on the dataset that matters most for the multi-relational claim, the comparison is incomplete. The authors should either run G-MPNN on JF17K with a bounded time budget and report its results, or explicitly revise the claim to state that G-MPNN was excluded from JF17K and that the comparison is against 14 full baselines plus a partial comparison.
- [Section 6 vs. Abstract] There is a direct inconsistency between the abstract and the conclusion. The abstract states H2GNN 'outperforms state-of-the-art approaches' on both tasks, while Section 6 says the encoder 'yields results comparable to the baselines on knowledge hypergraph link prediction and node classification tasks.' These are different claims. The authors should align the language: if the improvements are numerically consistent but not statistically significant, 'comparable' is appropriate; if they are significant improvements, the conclusion should say so. As written, the reader cannot tell which claim is intended.
- [Section 4.2, Tables 2 and 3] The node classification experiments use homogeneous co-authorship and co-citation hypergraphs, which contain no relation types and no entity positions. Therefore, these experiments do not exercise the position-aware, multi-relational message passing that distinguishes H2GNN from UniGNN-family methods. The only multi-relational evidence is the link prediction table, which makes the protocol disclosure in the first major comment essential: if the link prediction evaluation is not reproducible, the paper's central novelty claim is unsupported.
minor comments (7)
- [Section 3.2, Eq. (5)] Equation (5) contains an extra closing parenthesis: 'xi = centroid(xi, he, re, hp)e∈Ei )' should be corrected, and the notation should make clear that the centroid is taken over the set of neighboring hyperedges with their associated relation and position embeddings.
- [Section 3.1] The phrase 'we employ the aggregation operation operation' has a duplicated word; change to 'we employ the aggregation operation'.
- [Section 4.4] The text says 'massage-passing process' where 'message-passing' is meant; fix this typo in the ablation subsection.
- [Title] The arXiv title reads 'MULTI-R ELATIONAL' with an erroneous space; it should be 'MULTI-RELATIONAL'.
- [References] References [12] and [28] are the same work (Fatemi et al., 'Knowledge hypergraphs: Prediction beyond binary relations'); deduplicate them and use consistent citation numbering.
- [Section 3.3, Eq. (7)] The text says negative samples are generated by replacing each correct entity with N other entities, creating N*r negative samples per positive sample, but Section 4.1 reports only a 'negative ratio of 10.' Clarify whether N is the negative ratio or the number of negatives per position, and specify the value used in the experiments.
- [Figure 6] The caption does not define 'HO', 'CO', or the label 'H²GNN E'; add definitions in the caption or in the main text so the ablation results are self-contained.
Circularity Check
No circularity: H2GNN's derivation is self-contained and its components are drawn from external prior work; the empirical claims are evaluated on held-out data, with protocol concerns that are correctness issues, not circularity.
full rationale
I found no circular derivation in this paper. The core components are stated with explicit formulas: the Lorentz linear transformation and centroid aggregation are directly cited to external prior work ([21] Fully Hyperbolic Neural Networks and [26] Lorentzian Distance Learning), none of which is authored by the present authors, so there is no self-citation chain. The position-aware composition operation comp(he, r, hp) = centroid(he, r, hp) is a non-parametric aggregation over learned entity, relation, and position embeddings; no parameter is fitted to a target metric and then reported as a prediction. Node classification and link prediction are evaluated on test data against external baselines, so the claimed advantages are empirical rather than consequences of definitions. The two most notable concerns are not circularity: the link-prediction protocol is under-specified (no filtered/raw ranking statement, no curvature value, no exact data splits), and the paper itself notes that G-MPNN timed out on JF17K while the conclusion says results are 'comparable' to baselines. These are reproducibility and consistency issues, not cases where a derived quantity equals an input by construction. Therefore the appropriate score is 0.
Assumptions & free parameters
free parameters (3)
- Position-aware embedding hp (per relation type and position index) =
learned; dimension equals hidden size (8 for node classification, 200 for link prediction)
- Lorentz space curvature k =
not reported
- Linear maps Wh, Wr, Wp and biases =
learned during training
assumptions (5)
- standard math The exponential and logarithmic maps plus the Lorentz linear transformation Fx(M) from [21] map correctly between tangent space and hyperboloid, preserving hyperbolicity.
- standard math The centroid operation defined in Section 3.1 is a valid aggregation in Lorentz space that minimizes squared Lorentzian distance.
- domain assumption Entity order in a knowledge hypergraph tuple is semantically meaningful and can be encoded by position-specific relation variants (r-1, ..., r-m).
- domain assumption Knowledge hypergraphs or their expanded hierarchies are tree-like enough that hyperbolic space is beneficial.
- ad hoc to paper The star expansion of hyperedges into position-specific relations is lossless.
Cite this review
Pith. "Pith review of Hyperbolic Hypergraph Neural Networks for Multi-Relational Knowledge Hypergraph Representation." pith.science (2026). https://pith.science/paper/UDMOXNLI
@misc{pith2026241212158,
author = {Pith},
title = {Pith review of: Hyperbolic Hypergraph Neural Networks for Multi-Relational Knowledge Hypergraph Representation},
year = {2026},
howpublished = {\url{https://pith.science/paper/UDMOXNLI}},
note = {Machine review of arXiv:2412.12158}
}
read the original abstract
Knowledge hypergraphs generalize knowledge graphs using hyperedges to connect multiple entities and depict complicated relations. Existing methods either transform hyperedges into an easier-to-handle set of binary relations or view hyperedges as isolated and ignore their adjacencies. Both approaches have information loss and may potentially lead to the creation of sub-optimal models. To fix these issues, we propose the Hyperbolic Hypergraph Neural Network (H2GNN), whose essential component is the hyper-star message passing, a novel scheme motivated by a lossless expansion of hyperedges into hierarchies. It implements a direct embedding that consciously incorporates adjacent entities, hyper-relations, and entity position-aware information. As the name suggests, H2GNN operates in the hyperbolic space, which is more adept at capturing the tree-like hierarchy. We compare H2GNN with 15 baselines on knowledge hypergraphs, and it outperforms state-of-the-art approaches in both node classification and link prediction tasks.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 2 Pith papers
-
Two-dimensional Taxonomy for N-ary Knowledge Representation Learning Methods
A survey of n-ary knowledge representation learning methods proposes a two-dimensional taxonomy based on modeling technique and entity role/position awareness.
-
Knowledge Graphs Meet Graph Neural Networks: A Comprehensive Survey
A two-level taxonomy (KG pipeline stages × GNN architectures) systematically reviews GNN methods for knowledge-graph construction, embedding, reasoning, and applications.
Reference graph
Works this paper leans on
-
[21]
Fully hyperbolic neural networks
Weize Chen, Xu Han, Yankai Lin, Hexu Zhao, Zhiyuan Liu, Peng Li, Maosong Sun, and Jie Zhou. Fully hyperbolic neural networks. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics, 2022
work page 2022
-
[1]
Poskhg: A position-aware knowledge hypergraph model for link prediction
Zirui Chen, Xin Wang, Chenxu Wang, and Zhao Li. Poskhg: A position-aware knowledge hypergraph model for link prediction. Data Science and Engineering, 8(2):135–145, 2023
work page 2023
-
[2]
Enhance: Enhanced entity and relation embedding for knowledge hypergraph link prediction
Chenxu Wang, Zhao Li, Xin Wang, and Zirui Chen. Enhance: Enhanced entity and relation embedding for knowledge hypergraph link prediction. In Companion Proceedings of the ACM Web Conference 2023, pages 115–118, 2023
work page 2023
-
[3]
Medical knowledge graph: Data sources, construction, reasoning, and applications
Xuehong Wu, Junwen Duan, Yi Pan, and Min Li. Medical knowledge graph: Data sources, construction, reasoning, and applications. Big Data Mining and Analytics, 6(2):201–217, 2023
work page 2023
-
[4]
A universal quaternion hypergraph network for multimodal video question answering
Zhicheng Guo, Jiaxuan Zhao, Licheng Jiao, Xu Liu, and Fang Liu. A universal quaternion hypergraph network for multimodal video question answering. IEEE Transactions on Multimedia, 2021
work page 2021
-
[5]
Reinforcement learning with actor-critic for knowledge graph reasoning
Linli Zhang, Dewei Li, Yugeng Xi, and Shuai Jia. Reinforcement learning with actor-critic for knowledge graph reasoning. Science China. Information Sciences, 63(6):169101, 2020
work page 2020
-
[6]
Self- supervised multi-channel hypergraph convolutional network for social recommendation
Junliang Yu, Hongzhi Yin, Jundong Li, Qinyong Wang, Nguyen Quoc Viet Hung, and Xiangliang Zhang. Self- supervised multi-channel hypergraph convolutional network for social recommendation. In Proceedings of the web conference 2021, 2021
work page 2021
-
[7]
Using rich social media information for music recommendation via hypergraph model
Shulong Tan, Jiajun Bu, Chun Chen, Bin Xu, Can Wang, and Xiaofei He. Using rich social media information for music recommendation via hypergraph model. ACM Transactions on Multimedia Computing, Communications, and Applications (TOMM), 7, 2011
work page 2011
Show all 48 references
-
[8]
Kbhn: A knowledge-aware bi-hypergraph network based on visual-knowledge features fusion for teaching image annotation.Information Processing & Management, 60(1):103106, 2023
Hao Li, Jing Wang, Xu Du, Zhuang Hu, and Shuoqiu Yang. Kbhn: A knowledge-aware bi-hypergraph network based on visual-knowledge features fusion for teaching image annotation.Information Processing & Management, 60(1):103106, 2023
2023
-
[9]
Multi-modal knowledge hypergraph for diverse image retrieval
Yawen Zeng, Qin Jin, Tengfei Bao, and Wenfeng Li. Multi-modal knowledge hypergraph for diverse image retrieval. In The 37th AAAI Conference on Artificial Intelligence, 2023
2023
-
[10]
Megacare: Knowledge-guided multi-view hypergraph predictive framework for healthcare
Jialun Wu, Kai He, Rui Mao, Chen Li, and Erik Cambria. Megacare: Knowledge-guided multi-view hypergraph predictive framework for healthcare. Information Fusion, 100:101939, 2023. 11
2023
-
[11]
On the representation and embedding of knowledge bases beyond binary relations
Jianfeng Wen, Jianxin Li, Yongyi Mao, Shini Chen, and Richong Zhang. On the representation and embedding of knowledge bases beyond binary relations. In Proceedings of the 25th International Joint Conference on Artificial Intelligence, 2016
2016
-
[14]
Hypergraph neural networks
Yifan Feng, Haoxuan You, Zizhao Zhang, Rongrong Ji, and Yue Gao. Hypergraph neural networks. InProceedings of the 33rd AAAI conference on artificial intelligence, 2019
2019
-
[15]
Hypergcn: A new method for training graph convolutional networks on hypergraphs
Naganand Yadati, Madhav Nimishakavi, Prateek Yadav, Vikram Nitin, Anand Louis, and Partha Talukdar. Hypergcn: A new method for training graph convolutional networks on hypergraphs. In Proceedings of the 33rd Annual Conference on Neural Information Processing Systems, 2019
2019
-
[16]
Unignn: a unified framework for graph and hypergraph neural networks
Jing Huang and Jie Yang. Unignn: a unified framework for graph and hypergraph neural networks. InProceedings of the 13th International Joint Conference on Artificial Intelligence, 2021
2021
-
[17]
Heterogeneous hypergraph variational autoencoder for link prediction
Haoyi Fan, Fengbin Zhang, Yuxuan Wei, Zuoyong Li, Changqing Zou, Yue Gao, and Qionghai Dai. Heterogeneous hypergraph variational autoencoder for link prediction. IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(8), 2021
2021
-
[18]
Ffhr: Fully and flexible hyperbolic representation for knowledge graph completion
Wentao Shi, Junkang Wu, Xuezhi Cao, Jiawei Chen, Wenqiang Lei, Wei Wu, and Xiangnan He. Ffhr: Fully and flexible hyperbolic representation for knowledge graph completion. arXiv preprint arXiv:2302.04088, 2023
2023 arXiv
-
[19]
Hyperbolic graph convolutional neural networks
Ines Chami, Zhitao Ying, Christopher Ré, and Jure Leskovec. Hyperbolic graph convolutional neural networks. 2019
2019
-
[20]
Machine learning meets complex networks via coalescent embedding in the hyperbolic space
Alessandro Muscoloni, Josephine Maria Thomas, Sara Ciucci, Ginestra Bianconi, and Carlo Vittorio Cannis- traci. Machine learning meets complex networks via coalescent embedding in the hyperbolic space. Nature communications, 8(1), 2017
2017
-
[22]
On the hyperbolicity of large-scale networks
W Sean Kennedy, Onuttom Narayan, and Iraj Saniee. On the hyperbolicity of large-scale networks. arXiv preprint arXiv:1307.0031, 2013
2013 arXiv
-
[23]
Tree-like structure in large social and information networks
Aaron B Adcock, Blair D Sullivan, and Michael W Mahoney. Tree-like structure in large social and information networks. In Proceedings of the 13th international conference on data mining, 2013
2013
-
[24]
Hyperbolic graph attention network
Yiding Zhang, Xiao Wang, Chuan Shi, Xunqiang Jiang, and Yanfang Ye. Hyperbolic graph attention network. IEEE Transactions on Big Data, 8(6), 2022
2022
-
[25]
Representation tradeoffs for hyperbolic embeddings
Frederic Sala, Chris De Sa, Albert Gu, and Christopher Ré. Representation tradeoffs for hyperbolic embeddings. In Proceedings of the 35th International Conference on Machine Learning, 2018
2018
-
[26]
Lorentzian distance learning for hyperbolic representations
Marc Law, Renjie Liao, Jake Snell, and Richard Zemel. Lorentzian distance learning for hyperbolic representations. In Proceedings of the 36th International Conference on Machine Learning, 2019
2019
-
[27]
UMAP: uniform manifold approximation and projection for dimension reduction
Leland McInnes and John Healy. UMAP: uniform manifold approximation and projection for dimension reduction. CoRR, abs/1802.03426, 2018
2018 arXiv
-
[28]
Knowledge hypergraphs: Prediction beyond binary relations
Bahare Fatemi, Perouz Taslakian, David Vázquez, and David Poole. Knowledge hypergraphs: Prediction beyond binary relations. In Proceedings of the 29th International Joint Conference on Artificial Intelligence, 2020
2020
-
[29]
Hypersage: Generalizing inductive representation learning on hypergraphs
Devanshu Arya, Deepak K Gupta, Stevan Rudinac, and Marcel Worring. Hypersage: Generalizing inductive representation learning on hypergraphs. arXiv preprint arXiv:2010.04558, 2020
2010 arXiv
-
[30]
Beyond triplets: hyper-relational knowledge graph embedding for link prediction
Paolo Rosso, Dingqi Yang, and Philippe Cudré-Mauroux. Beyond triplets: hyper-relational knowledge graph embedding for link prediction. In Proceedings of the 2020 Web Conference, 2020
2020
-
[31]
Link prediction on n-ary relational data
Saiping Guan, Xiaolong Jin, Yuanzhuo Wang, and Xueqi Cheng. Link prediction on n-ary relational data. In Proceedings of the 2019 World Wide Web Conference, 2019
2019
-
[32]
Scalable instance reconstruction in knowledge bases via relatedness affiliated embedding
Richong Zhang, Junpeng Li, Jiajie Mei, and Yongyi Mao. Scalable instance reconstruction in knowledge bases via relatedness affiliated embedding. In Proceedings of the 2018 World Wide Web Conference, 2018
2018
-
[33]
Neural message passing for multi-relational ordered and recursive hypergraphs
Naganand Yadati. Neural message passing for multi-relational ordered and recursive hypergraphs. In Proceedings of the 34th Annual Conference on Neural Information Processing Systems, 2020. 12
2020
-
[34]
Bollacker, Colin Evans, Praveen K
Kurt D. Bollacker, Colin Evans, Praveen K. Paritosh, Tim Sturge, and Jamie Taylor. Freebase: a collaboratively created graph database for structuring human knowledge. In Proceedings of the ACM SIGMOD International Conference on Management of Data, 2008
2008
-
[35]
Neuinfer: Knowledge inference on n-ary facts
Saiping Guan, Xiaolong Jin, Jiafeng Guo, Yuanzhuo Wang, and Xueqi Cheng. Neuinfer: Knowledge inference on n-ary facts. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, 2020
2020
-
[36]
Knowledge graph embedding for link prediction: A comparative analysis
Andrea Rossi, Denilson Barbosa, Donatella Firmani, Antonio Matinata, and Paolo Merialdo. Knowledge graph embedding for link prediction: A comparative analysis. ACM Transactions on Knowledge Discovery from Data, 15(2), 2021
2021
-
[37]
Kipf and Max Welling
Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In Proceedings of the 5th International Conference on Learning Representations, 2017
2017
-
[38]
Predict then propagate: Graph neu- ral networks meet personalized pagerank
Johannes Klicpera, Aleksandar Bojchevski, and Stephan Günnemann. Predict then propagate: Graph neu- ral networks meet personalized pagerank. In Proceedings of the 7th International Conference on Learning Representations, 2019
2019
-
[39]
Adagcn: Adaboosting graph convolutional networks into deep models
Ke Sun, Zhanxing Zhu, and Zhouchen Lin. Adagcn: Adaboosting graph convolutional networks into deep models. In Proceedings of the 9th International Conference on Learning Representations, 2021
2021
-
[40]
Heterogeneous graph transformer
Ziniu Hu, Yuxiao Dong, Kuansan Wang, and Yizhou Sun. Heterogeneous graph transformer. InProceedings of the 2020 Web Conference, 2020
2020
-
[41]
Heterogeneous information network embedding with adversarial disentangler
Ruijia Wang, Chuan Shi, Tianyu Zhao, Xiao Wang, and Yanfang Ye. Heterogeneous information network embedding with adversarial disentangler. IEEE Transactions on Knowledge and Data Engineering, 35(2), 2023
2023
-
[42]
Houye Ji, Xiao Wang, Chuan Shi, Bai Wang, and Philip S. Yu. Heterogeneous graph propagation network. IEEE Transactions on Knowledge and Data Engineering, (1), 2023
2023
-
[43]
An elementary proof of a theorem of johnson and lindenstrauss
Sanjoy Dasgupta and Anupam Gupta. An elementary proof of a theorem of johnson and lindenstrauss. Random Structures & Algorithms, 22(1), 2003
2003
-
[44]
Bourgain’s discretization theorem
Ohad Giladi, Assaf Naor, and Gideon Schechtman. Bourgain’s discretization theorem. In Proceedings of the Annales de la Faculté des sciences de Toulouse: Mathématiques, 2012
2012
-
[45]
Hyperbolic graph neural networks
Qi Liu, Maximilian Nickel, and Douwe Kiela. Hyperbolic graph neural networks. In Proceedings of the 33rd Annual Conference on Neural Information Processing Systems, 2019
2019
-
[46]
Mixed-curvature multi-relational graph neural network for knowledge graph completion
Shen Wang, Xiaokai Wei, Cicero Nogueira Nogueira dos Santos, Zhiguo Wang, Ramesh Nallapati, Andrew Arnold, Bing Xiang, Philip S Yu, and Isabel F Cruz. Mixed-curvature multi-relational graph neural network for knowledge graph completion. In Proceedings of the 2021 ACM Web Confe...
2021
-
[47]
LHP: logical hypergraph link prediction
Yang Yang, Xue Li, Yi Guan, Haotian Wang, Chaoran Kong, and Jingchi Jiang. LHP: logical hypergraph link prediction. Expert Syst. Appl., 222:119842, 2023
2023
-
[48]
Hypergraph neural networks
Yifan Feng, Haoxuan You, Zizhao Zhang, Rongrong Ji, and Yue Gao. Hypergraph neural networks. In The 33rd AAAI Conference on Artificial Intelligence, AAAI 2019, The 31st Innovative Applications of Artificial Intelligence Conference, IAAI 2019, The 9th AAAI Symposium on Educatio...
2019
-
[49]
Talukdar
Naganand Yadati, Vikram Nitin, Madhav Nimishakavi, Prateek Yadav, Anand Louis, and Partha P. Talukdar. NHP: neural hypergraph link prediction. In Mathieu d’Aquin, Stefan Dietze, Claudia Hauff, Edward Curry, and Philippe Cudré-Mauroux, editors, CIKM ’20: The 29th ACM Internatio...
2020
-
[50]
Hypergraph joint representation learning for hypervertices and hyperedges via cross expansion
Yuguang Yan, Yuanlin Chen, Shibo Wang, Hanrui Wu, and Ruichu Cai. Hypergraph joint representation learning for hypervertices and hyperedges via cross expansion. In Michael J. Wooldridge, Jennifer G. Dy, and Sri- raam Natarajan, editors, Thirty-Eighth AAAI Conference on Artific...
2024
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.