REVIEW 4 major objections 5 minor 44 references
NAICS-Aware Graph Neural Networks for Large-Scale POI Co-visitation Prediction: A Multi-Modal Dataset and Methodology
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read NAICS-aware GraphSAGE lifts co-visit prediction R-squared to 0.625
desk verdict Useful dataset and plausible model, but the headline numbers are uninterpretable until the test-set sampling is specified. 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 load-bearing object is the learnable NAICS embedding: each of 276 six-digit NAICS codes gets a 16-dimensional vector, concatenated with a popularity scalar to form 17-dimensional node features, then propagated through five GraphSAGE layers with hidden dimension 512, mean aggregation, and decreasing neighbor-sampling fanout [15, 10, 5]. Edge features add log-distance, cyclical month encoding, and popularity interactions, plus 38 state-level socioeconomic indicators, fused through a two-stage projection head before final regression. The NAICS embeddings are what allow the model to distinguish complementary business types, such as coffee shops near fast-casual dining, from incompatible ones, such as coffee shops near fine dining, which pure distance cannot capture.
What would settle it
On a held-out month, compute $R^2$, NDCG@10, and MAE over the full population of brand pairs, including the more than 99.9 percent zero co-visit pairs, rather than on a balanced sample, and check whether the 0.625 test $R^2$ survives the true near-zero distribution.
Extended reading notes
Core claim
The central claim is that population-level POI co-visitation can be cast as edge regression on a brand graph, and that a five-layer GraphSAGE with learnable embeddings for 276 six-digit NAICS codes outperforms spatial interaction models, matrix factorization, gradient boosting, GAT, GCN, and STHGCN. The reported test $R^2$ is 0.625, a 157 percent relative improvement over STHGCN's 0.243, with NDCG@10 rising from 0.523 to 0.687 and MRR from 0.596 to 0.743. The paper presents this as the first end-to-end framework that jointly optimizes business taxonomy embeddings with spatial, temporal, and socioeconomic features for nationwide co-visitation forecasting.
Load-bearing premise
The load-bearing premise is that the held-out test set used to compute the headline $R^2 = 0.625$ resembles the real deployment distribution of brand pairs rather than a balanced sample with half observed edges, because the paper never states the test set's positive-to-negative ratio.
Editorial extensions
If this is right
- If the reported numbers hold, co-visitation models become accurate enough to pre-filter location candidates for retail site selection and to reduce location assessment errors by roughly half.
- The 31 to 32 percent NDCG gain means the relative ordering of co-visit pairs is substantially better, which matters directly for itinerary and next-location recommendation.
- The ablation study shows that removing NAICS embeddings drops $R^2$ from 0.625 to 0.258, so industry taxonomy is the dominant predictive signal in the model.
- State-wise decomposition and a reported throughput of 25,000 edge predictions per second make nationwide deployment computationally feasible.
- The model is most accurate on medium-frequency co-visits (10 to 1000 monthly visits) and under-predicts the heaviest-traffic edges, indicating a head-tail imbalance that remains unresolved.
Reading between the lines
- An implication the paper leaves implicit is that the balanced positive/negative sampling used in training may inflate the headline $R^2$ if the test set is also balanced; a deployment evaluation on the full population of brand pairs, where more than 99.9 percent are zero, would give a more honest accuracy figure.
- A testable extension beyond the paper is to apply the same NAICS-embedding approach to post-pandemic mobility data, which the paper explicitly says has shifted, to see whether learned category semantics transfer or require retraining.
- The learned NAICS embeddings could plausibly be reused as pre-trained features for other spatial tasks such as foot-traffic forecasting or store-cannibalization prediction, since co-visitation flows are a natural input to those models.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes NAICS-aware GraphSAGE, a graph neural network for monthly brand-pair co-visitation prediction in the United States. The method represents brands with learnable 6-digit NAICS embeddings plus a popularity score, builds state-level co-visitation graphs, augments edges with spatial, temporal, and socioeconomic features, and trains with balanced positive/negative edge batches. The authors introduce a proprietary POI-Graph dataset and report that their model achieves test R-squared 0.625 versus 0.243 for the best baseline STHGCN, with NDCG@10 improving from 0.523 to 0.687 and MRR from 0.596 to 0.743. The paper includes a temporal train/validation/test split, confidence intervals over five runs, paired t-tests, an ablation study, scalability analysis, and a code release with a curated dataset subset.
Significance. If the reported gains hold under a properly specified evaluation, this would be a substantial empirical contribution to large-scale POI co-visitation prediction: the task is cast as sparse edge regression rather than next-POI recommendation, the dataset is far larger than typical benchmark mobility graphs, and the ablation study isolates the contribution of NAICS embeddings, socioeconomic features, depth, and width. The paper also reports confidence intervals over five runs, uses a temporal holdout, and releases code and a curated dataset subset, which are concrete strengths for reproducibility. However, the central performance claim is currently difficult to interpret because the held-out test edge sampling procedure is never specified, and the ranking-metric definition is missing; these issues must be resolved before the quantitative claims can be accepted.
major comments (4)
- [Sec. 3.5.1 / Table 1] The sampling procedure for the held-out test edges is not specified, even though Section 3.4.1 states that training batches are balanced 50/50 positive/negative and Section 4 states that over 99.9% of brand pairs have zero monthly co-visits. If the test set is also balanced, the reported R2=0.625 and NDCG@10=0.687 are computed on a distribution far richer in positive edges than the real deployment distribution, so the 157% improvement over STHGCN and the 32% NDCG gain could largely reflect evaluation-set construction rather than predictive skill on the true sparse population. Please state the test-set sampling explicitly, report the positive-edge fraction in the held-out set, and report metrics on an unbiased sample of all candidate pairs or disaggregated by positive/negative strata.
- [Sec. 4 vs Sec. 3.2] The dataset section says that 236,814 distinct brands covering 1,020 NAICS categories are retained, while Section 3.2 and the POI-Graph contribution bullet state that there are 276 unique 6-digit NAICS codes in the dataset. This discrepancy changes the size of the learned embedding table (the |C| in Algorithm 1) and the claimed taxonomy coverage. Please clarify whether the 1,020 categories were aggregated to 276 and, if so, describe the aggregation procedure.
- [Sec. 3.5.2 / Table 1] The computation of NDCG@10 and MRR is not defined for this edge-regression setting. These ranking metrics require a candidate set and a query structure (for example, all candidate pairs for a brand, all pairs in a state, or a sampled subset), and Table 1 reports them without specifying that structure. Without a precise ranking protocol, the ranking gains cannot be reproduced or compared across methods. Please define the candidate set, the query construction, and how ties and negative edges are handled.
- [Sec. 5.5 / Appendix B] The statement that graph baselines use 'the same feature engineering pipeline as our method' is ambiguous about whether GAT, GCN, and STHGCN also receive the learned NAICS embeddings. Since the ablation in Section A.1 reports that removing NAICS embeddings from the proposed model drops R2 from 0.625 to 0.258, the reader needs to know whether the baselines include this component in order to determine whether Table 1 compares architectures or feature sets. Please specify the exact input node and edge features used by each baseline.
minor comments (5)
- [Sec. 5.3] The sentence 'Results show consistent improvements across all folds (mean R2 improvement of 158.7' is incomplete; it is missing the closing parenthesis and the comparison value.
- [Sec. 5 vs Sec. 3.7 vs Appendix D] The hardware descriptions conflict: Section 5 states NVIDIA 3090 GPUs (24GB), Section 3.7 states NVIDIA A100 GPUs (40GB), and Appendix D states NVIDIA L40 GPUs (40GB). Table 3 reports peak memory of 28.1GB, which exceeds the 3090's capacity. Please reconcile these statements.
- [Figure 3 / Sec. 3.2 and Sec. 3.3.1] The figure caption describes an 8-dimensional NAICS embedding and an input projection from R^{8+d_v}, while the text specifies 16-dimensional NAICS embeddings and R17 node features; the caption's edge assembly dimension R^{1024+d_e} also differs from the two-stage prediction head in Section 3.3.1 (Wnode in R^{256×1024}, Wedge in R^{32×48}, final 288-dimensional fusion). Please align the figure with the text.
- [Sec. 3.7 / Appendix D] The reproducibility statements are inconsistent: Section 3.7 says the full training pipeline is released at a GitHub URL along with a curated subset, while Appendix D says the pipeline 'will be released alongside the POI-Graph dataset.' Please clarify what is currently available.
- [Page 20] The header 'Received 20 February 2007; revised 12 March 2009; accepted 5 June 2009' appears to be a template artifact and should be removed or updated.
Circularity Check
No significant circularity: the core result is an external supervised benchmark on a temporal holdout, and no load-bearing step reduces to fitted constants or to the authors' own prior claims.
full rationale
The paper's central claim is empirical: NAICS-aware GraphSAGE reports R2 = 0.625 versus 0.243 for STHGCN on a held-out month (March 2020) after training on earlier months. This is a standard supervised evaluation in which features (NAICS codes, distance, month encoding, socioeconomic indicators) are inputs and the target is a held-out co-visitation count; no parameter is fitted directly to the test labels, and no reported quantity is defined in terms of another reported quantity. The learned NAICS embeddings are trained end-to-end on the training interval, which is a normal feature-learning procedure, not circularity. The t-SNE inspection of learned embeddings (Section 5.4) is self-referential in style but not load-bearing: it is a post-hoc interpretability check, and the claimed semantic alignment is checked against the external NAICS taxonomy rather than used to justify the performance numbers. Baselines are external (Gravity, GeoMF, LightGBM, GAT, GCN, STHGCN), and there is no load-bearing self-citation chain; the citations are to external prior work. The acknowledged limitations in Section 6 (pre-pandemic focus, US-only data, head-tail imbalance) concern generalizability and error structure, not circularity. The evaluation-set sampling ambiguity noted in Sections 3.4.1 and 3.5 is a metric-validity risk, but it is not a case where a prediction reduces by construction to its inputs, so it does not raise the circularity score.
Assumptions & free parameters
free parameters (10)
- Co-visitation edge threshold =
5 device traces per month
- Outlier cutoff for convenience stores =
40,000 monthly co-visits
- NAICS embedding dimension =
16
- GraphSAGE hidden dimension =
512
- Number of GraphSAGE layers =
5
- Neighbor sampling fanout =
[15, 10, 5]
- Dropout rate =
0.2
- Popularity score encoding =
3 levels (0, 1, 2)
- Balanced positive/negative batch ratio =
1:1
- Optimization hyperparameters =
lr=1e-3, weight decay=1e-4, patience=20
assumptions (8)
- domain assumption A co-visitation event is defined as two brands visited by the same device within a one-hour window.
- domain assumption Multiple physical locations of the same brand can be aggregated into a single brand-level node.
- domain assumption State-wise decomposition preserves the nationwide co-visitation signal.
- domain assumption The most frequent 6-digit NAICS code assigned to a brand is a faithful representation of its business.
- domain assumption Pre-pandemic months from January 2018 to March 2020 are behaviorally stable enough to serve as the evaluation regime.
- domain assumption State-level socioeconomic indicators can be treated as shared edge features with a one-month lag.
- domain assumption Mean aggregation and balanced negative sampling are appropriate for sparse co-visitation graphs.
- domain assumption MSE loss on raw counts is an appropriate training objective despite targets spanning several orders of magnitude.
Cite this review
Pith. "Pith review of NAICS-Aware Graph Neural Networks for Large-Scale POI Co-visitation Prediction: A Multi-Modal Dataset and Methodology." pith.science (2026). https://pith.science/paper/7WEYTIOL
@misc{pith2026250719697,
author = {Pith},
title = {Pith review of: NAICS-Aware Graph Neural Networks for Large-Scale POI Co-visitation Prediction: A Multi-Modal Dataset and Methodology},
year = {2026},
howpublished = {\url{https://pith.science/paper/7WEYTIOL}},
note = {Machine review of arXiv:2507.19697}
}
read the original abstract
Understanding where people go after visiting one business is crucial for urban planning, retail analytics, and location-based services. However, predicting these co-visitation patterns across millions of venues remains challenging due to extreme data sparsity and the complex interplay between spatial proximity and business relationships. Traditional approaches using only geographic distance fail to capture why coffee shops attract different customer flows than fine dining restaurants, even when co-located. We introduce NAICS-aware GraphSAGE, a novel graph neural network that integrates business taxonomy knowledge through learnable embeddings to predict population-scale co-visitation patterns. Our key insight is that business semantics, captured through detailed industry codes, provide crucial signals that pure spatial models cannot explain. The approach scales to massive datasets (4.2 billion potential venue pairs) through efficient state-wise decomposition while combining spatial, temporal, and socioeconomic features in an end-to-end framework. Evaluated on our POI-Graph dataset comprising 94.9 million co-visitation records across 92,486 brands and 48 US states, our method achieves significant improvements over state-of-the-art baselines: the R-squared value increases from 0.243 to 0.625 (a 157 percent improvement), with strong gains in ranking quality (32 percent improvement in NDCG at 10).
Figures
Reference graph
Works this paper leans on
-
[1]
Helena Barbosa, Marc Barthelemy, Gourab Ghoshal, Charlotte R James, Maxime Lenormand, Thomas Louail, Ronaldo Menezes, José J Ramasco, Filippo Simini, and Marco Tomasini. 2023. Urban mobility analysis using graph neural networks and multimodal data fusion.Nature Communications 14, 1 (2023), 1–12
work page 2023
-
[2]
Xavier Bouthillier, Pierre Delaunay, Mirko Bronzi, Assya Trofimov, Brennan Nichyporuk, Justin Szeto, Nazanin Mohammadi Sepahvand, Edward Raff, Kanika Madan, Vikram Voleti, et al. 2021. Accounting for variance in machine learning benchmarks. In Proceedings of Machine Learning and Systems, Vol. 3. 747–769
work page 2021
-
[3]
Michael M Bronstein, Joan Bruna, Taco Cohen, and Petar Veličković. 2023. Geometric deep learning: Grids, groups, graphs, geodesics, and gauges. Nature Machine Intelligence 5, 3 (2023), 205–222
work page 2023
-
[4]
Hongjun Chen, Jiyuan Wu, Binhui Wang, and Ming Li. 2023. STGFormer: Efficient spatial-temporal graph transformer for traffic forecasting. In Advances in Neural Information Processing Systems , Vol. 36. 18403–18417
work page 2023
-
[5]
Shen Chen, Chaoyang Zhang, Minghui Yu, Hongyi Mao, Yongchao Xu, Renzhe Zhang, Yida Peng, Peng Shen, Yanghua Lin, and Zhi Zhang. 2022. PyTorch distributed: Experiences on accelerating data parallel training. Proceedings of the VLDB Endowment 15, 12, 3674–3687
work page 2022
-
[6]
Janez Demšar. 2006. Statistical comparisons of classifiers over multiple data sets. Journal of Machine Learning Research 7 (2006), 1–30
work page 2006
-
[7]
Thomas G Dietterich. 1998. Approximate statistical tests for comparing supervised classification learning algorithms. Neural Computation 10, 7 (1998), 1895–1923
work page 1998
-
[8]
Yuxiao Dong, Jie Tang, Tiancheng Lou, and Bin Wang. 2023. NAICS-based business understanding through graph neural networks. In Proceedings of the 2023 Web Conference. 1845–1856
work page 2023
Show all 44 references
-
[9]
Yao Fang, Lin Chen, and Jie Tang. 2022. Graph-based modeling of spatial interactions for retail analytics. In Proceedings of the 28th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining . 213–223
2022
-
[10]
Jie Feng, Yong Li, Chao Zhang, Funing Sun, Fangli Meng, Ang Guo, and Depeng Jin. 2018. DeepMove: Predicting human mobility with attentional recurrent networks. In Proceedings of the 2018 World Wide Web Conference . 1459–1468
2018
-
[11]
Matthias Fey and Jan Eric Lenssen. 2023. PyTorch Geometric Temporal: Spatiotemporal signal processing with neural networks. Journal of Machine Learning Research 24, 38 (2023), 1–8
2023
-
[12]
Huiji Gao, Jiliang Tang, Xia Hu, and Huan Liu. 2023. Location-based social networks: Users, check-ins and travel records. Comput. Surveys 55, 6 (2023), 1–44
2023
-
[13]
Shengnan Guo, Youfang Lin, Ning Feng, Chao Song, and Huaiyu Wan. 2019. Attention based spatial-temporal graph convolutional networks for traffic flow forecasting. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 33. 922–929
2019
-
[14]
William L Hamilton, Rex Ying, and Jure Leskovec. 2017. Inductive representation learning on large graphs. In Advances in Neural Information Processing Systems, Vol. 30. 1024–1034
2017
-
[15]
Jiawei Han, Jian Pei, Micheline Kamber, et al. 2023. Business category representation learning through mobility patterns. IEEE Transactions on Knowledge and Data Engineering 35, 4 (2023), 3654–3667
2023
-
[16]
Ming Jin, Yu Zheng, Yuan-Fang Li, Chen Gong, Chuan Zhou, and Shirui Pan. 2023. Spatio-temporal graph neural networks for multivariate time series forecasting. In Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 902–913
2023
-
[17]
Defu Lian, Cong Zhao, Xing Xie, Guangzhong Sun, Enhong Chen, and Yong Rui. 2014. GeoMF: joint geographical modeling and matrix factorization for point-of-interest recommendation. In Proceedings of the 20th ACM SIGKDD international conference on Knowledge discovery and data min...
2014
-
[18]
Yu Liu, Xian Li, and Song Gao. 2020. Urban computing for city-scale pandemic response: A survey. IEEE Transactions on Big Data 7, 3 (2020), 443–458
2020
-
[19]
Zheng Liu, Zhenwei Huang, Shaojie Zou, and Junbo Shang. 2023. STGODE: Spatial-temporal graph ordinary differential equation networks for traffic forecasting. IEEE Transactions on Knowledge and Data Engineering 35, 12 (2023), 12444–12457
2023
-
[20]
Massimiliano Luca, Gianni Barlacchi, Bruno Lepri, and Luca Pappalardo. 2023. Understanding mobility patterns with multimodal learning. Scientific Reports 13, 1 (2023), 1–15
2023
-
[21]
Zezhi Shao, Zhao Zhang, Fei Wang, and Yongjun Xu. 2022. Traffic flow prediction with vehicle trajectory data. In Proceedings of the 28th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining . 1550–1560
2022
-
[22]
Chao Song, Youfang Lin, Shengnan Guo, and Huaiyu Wan. 2020. Spatial-temporal synchronous graph convolutional networks: A new framework for spatial-temporal network data forecasting. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 34. 914–921. 16 Alrubyli et al
2020
-
[23]
Kangfei Wang, Yu Qian, Hanghang Tong, and Jian Li. 2023. Expressivity-preserving GNN simulation. In Advances in Neural Information Processing Systems, Vol. 36. 12707–12720
2023
-
[24]
Minjie Wang, Lingfan Yu, Da Zheng, Quan Gan, Yu Gai, Zihao Ye, Mufei Li, Jinjing Zhou, Qi Huang, Chao Ma, Ziyue Huang, Qipeng Guo, Hao Zhang, Haibin Lin, Jinyang Yu, and Ion Stoica. 2021. Million-scale graph processing via graph neural networks. In Proceedings of Machine Learn...
2021
-
[25]
Zhiwei Wang, Wei Wei, Gao Cong, Xian-Ling Li, Xian-Ling Mao, and Minghui Qiu. 2022. Hierarchical category-aware transformer for next basket recommendation. In Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval . 1613–1622
2022
-
[26]
Ziqiang Wang, Yuchao Zhu, Chao Wang, Wenjie Ma, Bo Li, and Jie Yu. 2023. Adaptive Graph Representation Learning for Next POI Recommendation. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval . 393–402
2023
-
[27]
Yanchuan Wei, Yu Zheng, and Qiang Yang. 2022. Contrastive trajectory similarity learning with dual-feature attention. In Proceedings of the 38th IEEE International Conference on Data Engineering . 2797–2810
2022
-
[28]
Le Wu, Xiangnan Lei, Xiangnan He, Xiang Wang, Ajmal Mian, and Tat-Seng Chua. 2024. Spatial-temporal multi-head attention for next POI recommendation. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 2901–2911
2024
-
[29]
Lianghao Wu, Lei Li, Yong Xu, Richang Hong, Meng Zhang, and Jing Wang. 2022. Knowledge-enhanced hierarchical graph transformer network for multi-behavior recommendation. 36 (2022), 4486–4493
2022
-
[30]
Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and Philip S Yu. 2020. A comprehensive survey on graph neural networks. IEEE Transactions on Neural Networks and Learning Systems 32, 1 (2020), 4–24
2020
-
[31]
Zonghan Wu, Shirui Pan, Guodong Long, Jing Jiang, Xiaojie Chang, and Chengqi Zhang. 2019. Graph WaveNet for deep spatial-temporal graph modeling. (2019), 1907–1913
2019
-
[32]
Ying Xu, Gao Cong, Ling Zhu, and Lili Cui. 2024. MMPOI: A Multi-Modal Content-Aware Framework for POI Recommendations. In Proceedings of the ACM Web Conference 2024. 3454–3463
2024
-
[33]
Xiaotao Yan, Tao Song, Yina Jiao, Jing He, Jin Wang, Rui Li, and Wei Chu. 2023. Spatio-Temporal Hypergraph Learning for Next POI Recommendation. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval . 403–412
2023
-
[34]
Sen Yang, Jun Liu, and Kai Zhao. 2022. GETNext: Trajectory Flow Map Enhanced Transformer for Next POI Recommendation. In Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval . 1144–1153
2022
-
[35]
Yuanchi Yang, Zhihong Chen, Xiaoming Liu, and Qiang Wang. 2021. Category-aware graph neural networks for improving e-commerce review helpfulness prediction. In Proceedings of the 44th International ACM SIGIR Conference on Research and Development in Information Retrieval . 2100–2104
2021
-
[36]
Rex Ying, Ruining He, Kaifeng Chen, Pong Eksombatchai, William L Hamilton, and Jure Leskovec. 2018. Graph convolutional neural networks for web-scale recommender systems. In Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining . 974–983
2018
-
[37]
Jiaxuan You, Jure Liu, Rex Ying, and Jure Leskovec. 2023. Graph structure learning with variational information bottleneck. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 37. 10713–10721
2023
-
[38]
Muhan Zhang and Yixin Chen. 2018. Link prediction based on graph neural networks. In Advances in Neural Information Processing Systems , Vol. 31. 5165–5175
2018
-
[39]
Shurui Zhang, Liang Yao, Aidong Sun, and Huanhuan Chen. 2024. Edge-level graph neural network explanation by leveraging causal inference. IEEE Transactions on Knowledge and Data Engineering 36, 8 (2024), 3943–3955
2024
-
[40]
Yiding Zhang, Xiao Xiong, Linglong Kong, and Yanlin Li. 2021. Weighted graph convolutional network. In Proceedings of the 30th ACM International Conference on Information and Knowledge Management . 2651–2655
2021
-
[41]
Zhiyuan Zhang, Peng Cui, and Wenwu Zhu. 2021. Graph neural networks: A review of methods and applications. AI Open 2 (2021), 57–81
2021
-
[42]
Ling Zhao, Yujiao Song, Chao Zhang, Yu Liu, Pu Wang, Tao Lin, Min Deng, and Haifeng Li. 2019. Spatial-temporal graph convolutional networks: A deep learning approach for traffic forecasting. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 33. 7165–7172
2019
-
[43]
Chuanpan Zheng, Xiaoliang Fan, Cheng Wang, and Jianzhong Qi. 2020. GMAN: A graph multi-attention network for traffic prediction. InProceedings of the AAAI Conference on Artificial Intelligence , Vol. 34. 1234–1241
2020
-
[44]
Jing Zhou, Peng Cui, Fei Wang, and Xiang Zhang. 2023. EdgeGNN: Edge-centric Graph Neural Networks for Weighted Link Prediction. InProceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 3120–3130. A Ablation Study To gain deeper insights into the...
2023
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.