Long-range Meta-path Search on Large-scale Heterogeneous Graphs

Utilizing long-range dependency, a concept extensively studied in homogeneous graphs, remains underexplored in heterogeneous graphs, especially on large ones, posing two significant challenges: Reducing computational costs while maximizing effective information utilization in the presence of heterogeneity, and overcoming the over-smoothing issue in graph neural networks. To address this gap, we investigate the importance of different meta-paths and introduce an automatic framework for utilizing long-range dependency on heterogeneous graphs, denoted as Long-range Meta-path Search through Progressive Sampling (LMSPS). Specifically, we develop a search space with all meta-paths related to the target node type. By employing a progressive sampling algorithm, LMSPS dynamically shrinks the search space with hop-independent time complexity. Through a sampling evaluation strategy, LMSPS conducts a specialized and effective meta-path selection, leading to retraining with only effective meta-paths, thus mitigating costs and over-smoothing. Extensive experiments across diverse heterogeneous datasets validate LMSPS's capability in discovering effective long-range meta-paths, surpassing state-of-the-art methods. Our code is available at https://github.com/JHL-HUST/LMSPS.

Paper

References (67)

Scroll for more · 38 remaining

Similar papers

Peer review

Reviewer r1gQ3/10 · confidence 4/52024-07-08

Summary

This paper proposes an efficient meta-path search method on large-scale heterogeneous graphs. The proposed progressive sampling strategy and sampling evaluation strategy is effective for reducing the memory and time overhead, especially when the maximum hop is large. Experimental results show the effectiveness and efficiency of the proposed method.

Strengths

1. The paper is well-written and easy to understand. 2. The experiments are comprehensive and the experimental results reveal the effectiveness of the proposed method. 3. The motivation sounds reasonable.

Weaknesses

1. This novelty of this paper is limited. 2. The paper lacks a theoretical analysis about why the sampling strategy in the search stage is valid. 3. Experimental results on more large-scale graph datasets should be conducted.

Questions

1. The differentiable search strategy is widely used in many automated graph learning tasks, such as DiffMG. There is no significant contribution in the search strategy other than the progressive sampling method. Moreover, the proposed sampling method is simply based on path strength. Similarly, the proposed sampling evaluation that uses multiple sampling to select top-$M$ meta-paths is also straightforward. Overall, the major concern about this paper is the limited novelty, although the experimental results seem good. 2. Why the simple progressive sampling method is effective? The authors should add a theoretical analysis about the effectiveness. For example, is it possible to filter out the promising meta-paths especially in the early stage of the search process? 3. The paper aims to achieve the meta-path search on large-scale datasets. However, only one large-scale dataset (i.e., OGBN-MAG) is employed. It is suggested to add more large-scale datasets to evaluate the effectiveness of the proposed method. 4. More experimental analysis should focus on large-scale datasets, such as the performance and efficiency analysis in Figure 3. 5. The interpretability meta-paths searched by LMSPS should be explained in detail. Many searched meta-paths seem strange and unreasonable. For example, PPPPPP in ACM, PPPAIAI in OGBN-MAG. The semantics of these meta-paths is hard to understand. 6. It is suggested to analyze all searched meta-paths in-depth and give more insights about how to choose suitable meta-paths manually. 7. Many hyperparameters need to be tuned on each dataset, such as the search space size $C$, the number of sampled meta-paths $M$, and the maximum hops.

Rating

3

Confidence

4

Soundness

2

Presentation

3

Contribution

2

Limitations

NA

Authorsrebuttal2024-08-12

Thank you for the detailed response!

Thank you very much for the detailed response. In the following, we respond to your concerns point by point. --- ### **W1: Searching for meta-paths for heterogeneous graphs is not a new topic. Applying a commonly used search method for a not new topic is not very exciting.** **R1:** We appreciate that the reviewer gave us the opportunity to highlight our novelty again. We agree that searching for meta-paths for heterogeneous graphs is not a new topic. However, we would like to clarify that: 1. LMSPS is the first HGNN that makes it possible to achieve automated meta-path search for large-scale heterogeneous graph node property prediction*. 2. LMSPS is the first HGNN to utilize long-range dependency in large-scale heterogeneous graphs. 3. The searched meta-paths of LMSPS can be generalized to other HGNNs to boost their performance, which has not been achieved by existing works. **All the above contributions are new topics.** In addition, as described by the reviewer, the differentiable search method is widely used in many applications inspired by NAS. There have been dozens of papers accepted by top conferences. In our paper, we have cited the related paper a dozen times, highlighted the differences between LMSPS and them, and compared LMSPS with the representative methods. **Overall, we can conclude that our search method is totally new.** The theoretical analysis of the reasonableness of the sampling search is provided below. Thank you very much! --- ### **W2: Many large graphs in OGB are heterogeneous and can be used for evaluation**. **R2:** Thank you for the question. **We would like to clarify that many excellent works [1-4] also highlight their advantage on large-scale heterogeneous node property prediction only based on the results on OGBN-MAG.** In addition, in OGB, there are only six datasets for node property prediction: ogbn-products, ogbn-proteins, ogbn-arxiv, ogbn-papers100M, and ogbn-mag, and MAG240M. Except for ogbn-mag and MAG240M, all other four datasets are not heterogeneous. Because MAG240M contains over 240,000,000 nodes, it has hardly been tested by related works. The following tables shows the statistics of ogbn-mag and MAG240M. Although we have tried to run MAG240M, our hardware conditions cannot support the training even in the preprocessing stage. Thank you very much! | Dataset | Num paper nodes | Num author nodes | Num institution nodes | Num field nodes | Total | | -------- | --------------- | ---------------- | --------------------- | --------------- | ------------------- | | ogbn-mag | 736,389 | 1,134,649 | 8,740 | 59,965 | 1,939,743 | | MAG240M | 121,751,666 | 122,383,112 | 25,721 | - | 244,160,652 (126x) | | Dataset | Num paper-paper edges | Num author-paper edges | Num author-institution edges | Num paper-field edges | Total | | -------- | --------------------- | ---------------------- | ---------------------------- | --------------------- | -------------------- | | ogbn-mag | 5,416,271 | 7,145,660 | 1,043,998 | 7,505,078 | 21,111,007 | | MAG240M | 1,297,748,926 | 386,022,720 | 44,592,586 | - | 1,728,364,232 (82x) | --- ### **W3: The authors should find some common insights from the searched meta-path.** **R3:** We appreciate that the reviewer gave us the opportunity to highlight our insights again. We have shown insights into DBLP, IMDB, and ACM in the global response. We show them again as follows. * In DBLP with target node type Author, the information from P (Paper) and A (Author) is slightly more important than that from T (Term) and V (Venue). * In IMDB with target node type Movie, the importance of information of K (Keyword), M (Movie), A (Actor) and D (Director) gradually decreases. * In ACM with target node type Paper, the importance of information of P (Paper), A (Author) and C (Conference) gradually decreases. * **For all related datasets, the importance of node type is highly related to the target node type**. --- Thank you once more for your efforts. Please kindly let us know if our response has addressed your concerns. We are happy to answer your remaining concerns and questions if you have any. --- [1] Open Graph Benchmark: Datasets for Machine Learning on Graphs. NeurIPS, 2020. [2] Graph Attention Multi-Layer Perceptron. KDD, 2022. [3] Simple and Efficient Heterogeneous Graph Neural Network. AAAI, 2023. [4] An Efficient Subgraph-Inferring Framework for Large-Scale Heterogeneous Graphs. AAAI, 2024.

Reviewer 71Wo7/10 · confidence 4/52024-07-09

Summary

The paper proposes a novel framework LMSPS, aimed at efficiently utilizing long-range dependencies in large-scale HIN. The framework addresses two primary challenges: reducing computational costs while maximizing information utilization and overcoming the over-smoothing problem common in GNNs. LMSPS employs a progressive sampling algorithm to dynamically reduce the search space for meta-paths, thus identifying a subset of effective meta-paths tailored to the specific dataset and task.

Strengths

1. The paper is well-written and easy to follow. The technical designs are clearly described. 2. The idea of using a progressive sampling algorithm to narrow the search space for meta-paths is novel and well motivated. 3. The framework is designed to handle large-scale graphs efficiently, maintaining stable performance and resource usage even as the complexity of meta-paths increases. 4. The proposed method consistently outperforms SOTA baselines across multiple datasets, including large-scale datasets like OGBN-MAG, demonstrating its robustness and effectiveness.

Weaknesses

1. I still have some doubts about the necessity of modeling long-range dependencies in heterogeneous graphs. For example, in an academic network, the label of a paper can be well predicted by relying on some very close nodes. Could the authors provide an example to illustrate specific situations where long-range dependency is crucial? 2. Although the paper compares LMSPS with various baselines, more detailed ablation studies focusing on the individual components of LMSPS would strengthen the validation of its effectiveness.

Questions

See W1.

Rating

7

Confidence

4

Soundness

3

Presentation

4

Contribution

3

Limitations

NA.

Reviewer msas7/10 · confidence 4/52024-07-12

Summary

The paper proposes a new framework called Long-range Meta-path Search through Progressive Sampling (LMSPS), which differs from traditional meta-path-based GNN training methods on heterogeneous graphs. LMSPS introduces a strategy for building a search space that includes all meta-paths related to the target node type and employs a sampling evaluation strategy to conduct specialized and effective meta-path selection. The authors studied two new observations: a) A small number of meta-paths dominate the performance, b) Certain meta-paths can have a negative impact on performance. They designed the LMSPS framework with a super-net in the search stage and a target-net in the training stage to mitigate costs and the over-smoothing problem that occurs in recent Heterogeneous Graph Neural Networks. In conclusion, the paper presents a new framework that could help us better understand the challenges of leveraging long-range dependencies in large-scale heterogeneous graphs.

Strengths

* The paper in general presents a nice framework. The paper is well-written, has good coherence, and is well-structured. * The two observations are interesting, i.e., a few meta-paths dominate the performance, and certain meta-paths can have negative impact on performance. * The paper is very clear with thorough experiments and analysis. The originality of the experiment is strong. * The experiments have demonstrated their limitations and possibilities to improve the effectiveness across datasets.

Weaknesses

* Even though the observations are interesting, I think the paper could do more to explore their implications for robust generalization. What does robust generalization to other classes imply or reveal about the process of long-range meta-path GNN training? The reduction of meta-path samples is effective. The authors clarify that the optimal maximum hop depends on the dataset and task, as mentioned in Appendix G, and cannot be determined automatically. Thus, will the sampling search impact the model's robustness? * The evaluation results observed in Figure 1(a) and (b) cannot demonstrate the improvement in performance upon the removal of certain meta-paths. This raises the question of whether the observation that "certain meta-paths can have a negative impact on performance" is generally applicable. The second observation from Figure(c) is derived from the ACM dataset. Will this observation be valid for other heterogeneous graphs? * What is the cost of the pre-processing stage? Can it be reduced by sampling to decrease the neighbor aggregation costs? * Line 172 clarifies that MLP requires less human intervention compared to Transformer. Are there specific experiments demonstrating the superiority of MLP?

Questions

Please see the weakness section.

Rating

7

Confidence

4

Soundness

3

Presentation

4

Contribution

3

Limitations

The authors have adequately addressed the limitations of their work.

Reviewer dJZo5/10 · confidence 4/52024-07-14

Summary

This paper presents an empirical study demonstrating that not all meta-paths are useful; some even negatively impact performance. Selecting the most meaningful meta-paths is crucial. The authors propose LMSPS, a super-net-based method to select beneficial meta-paths effectively.

Strengths

S1. The presentation is excellent and easy to follow. S2. This paper is the first attempt to combine super-net and heterogeneous graph learning. S3. Experimental results show that their model achieves state-of-the-art (SOTA) performance.

Weaknesses

W1. The paper's title is misleading. According to the title, the work seems to search for meaningful long-range meta-paths only to improve the performance of HIN representation learning. However, I think the major idea is to select effective meta-paths efficiently to overcome the issue of the exponential increase in the number of meta-paths. As shown in Table 9, some short meta-paths are still important. This work is actually a meta-path selection task in my point of view. W2. The motivation of SeHGNN is that "models with a single-layer structure and long meta-paths outperform those with multi-layers and short meta-paths". I think it does not mean that long-range meta-paths are more important than short paths. I agree that different meta-paths have different importance. But is the length of the paths the main reason for this? As analyzed in the Limitation section, although the maximum hop is set to 12, the best performance is achieved at 6. Some early studies claimed that long paths can introduce noise and less relevant connections between nodes, leading to less accurate or meaningful representations. W3. For most datasets, the improvement is marginal compared to the second-best performance. The enhancement brought by the selected meta-paths is not significant enough according to the experimental results.

Questions

1. Please refer to the aforementioned weaknesses. 2. In OGB, I can see that LMSPS achieved the 3rd place. Have you tried to compare with the first two methods?

Rating

5

Confidence

4

Soundness

2

Presentation

3

Contribution

2

Limitations

Limitations are sufficiently stated in the appendix. To my knowledge, there is no negative societal impact of this work.

Authorsrebuttal2024-08-13

Looking forward to your response

Dear Reviewer #dJZo, We sincerely appreciate your thorough review and insightful comments on our manuscript. We have taken the time to carefully address all the points you raised, including - explaining the misleading title - clarifying the importance of long-range meta-paths and their role - defending the improvement, especially in the ogbn-mag leaderboard - explaining the leaderboard issues Please refer to the **rebuttal content** for details. As the discussion period is limited to 7 days and only 1 day remains, we kindly request your prompt feedback on our responses. Your expertise is crucial to us, and we welcome any additional thoughts you may have. Thank you once again for your time and attention. Best regards, Authors of #4444

Reviewer dJZo2024-08-14

Thank you for the detailed response. I am sorry for providing my feedback late. W3 and W4 have been addressed satisfactorily. Below are more comments regarding W1 and W2. W1: My further concern is that there is no analysis of how the discovered long-range meta-paths benefit performance. It would be interesting to see some discussions about the impact of the discovered long-range meta-paths on performance improvement. Additionally, the methodology seems to lack specific techniques for searching meaningful "long-range" meta-paths. It mainly focuses on utilizing a super-net to discover "useful" meta-paths. The novelty of this part seems marginal. W2: I think SeHGNN is primarily designed for efficient heterogeneous graph learning rather than discovering useful meta-paths. It cannot handle long-hop meta-paths due to the setting of enumerating all possible meta-paths. If this setting is changed to a limited number of meta-paths, SeHGNN could be efficient due to its simplified attention mechanism. Again, since the motivation of this work is to efficiently select the most effective meta-paths, the experiments should give more discussions about the quality of the discovered meta-paths.

Authorsrebuttal2024-08-14

Thank you for the detailed response!

Thank you very much for the detailed response. In the following, we respond to your concerns point by point. ### W1: How do the discovered long-range meta-paths benefit performance? The methodology seems to lack specific techniques for searching meaningful "long-range" meta-paths. **R1:** Thank you for the insightful question. In the global rebuttal "For the importance of long-range meta-paths," we have provided a detailed example to show the ability of long-range dependencies to complete the missing information that can not be obtained from close nodes. Also, as shown in Table 2 in Section 6.3 (also shown below for quick check), the performance of LMSPS keeps increasing as the maximum hop value grows, which means gradually adding longer meta-paths. It indicates that LMSPS can overcome the issues caused by utilizing long-range dependency, e.g., over-smoothing and noise. Moreover, as shown in Table 4 of Section 6.4, the discovered meta-path can also benefit SeHGNN. Searching for long-range meta-paths has two main challenges: the exponentially increasing issue and the noise issue. To overcome both issues, as described in Lines 157-169, we propose a progressive sampling algorithm and a sampling evaluation strategy to overcome the two challenges, respectively. Specifically, the high-efficiency progressive sampling algorithm ensures LMSPS can search effective short and long-range meta-paths under a large maximum hop. As different meta-paths could be noisy or redundant to each other, top-M meta-paths are not necessarily the optimal solution when their importance is calculated independently. The sampling evaluation strategy evaluates the overall performance of each meta-path set. So, it can overcome the noise issue. | Max hop | Num path | SeHGNN (Time / Test Acc (%)) | LMSPS (Time / Test Acc(%)) | | :-----: | :------: | :------------------------: | :----------------------------: | | 1 | 4 | 4.35 / 47.18 | 3.98 / 46.88 | | 2 | 10 | 6.44 / 51.79 | 5.63 / 51.91 | | 3 | 23 | 11.28 / 52.44 | 10.02 / 52.72 | | 4 | 50 | OOM | 14.34 / 53.43 | | 5 | 107 | OOM | 14.77 / 53.90 | | 6 | 226 | OOM | 14.71 / **54.83** | --- ### **W2.1: If this setting is changed to a limited number of meta-paths, SeHGNN could be efficient due to its simplified attention mechanism.** **R2.1:** Thank you for the insightful comment. Based on our second observation, i.e., certain meta-paths can have a negative impact on heterogeneous graphs; the attention mechanism has limitations in dealing with negative meta-paths. As described in Lines 142-144, the second observation is supported by the fact that various recent HGNNs have removed some edge types to exclude corresponding heterogeneous information during the pre-processing stage. For example, SeHGNN removes all edge types related to node type F (Field) in the ACM dataset. If simplified attention can handle negative meta-paths, this step is unnecessary. On the contrary, by meta-path search, LMSPS can easily drop out negative meta-paths. Table 2 supports this conclusion. When the maximum hop is 3, LMSPS outperforms SeHGNN by 0.28%, even the latter using more meta-paths. --- ### **W2.2: The experiments should give more discussions about the quality of the discovered meta-paths.** **R2.2:** As described in Lines 310-319, to demonstrate the high quality of searched meta-paths, on the one hand, the meta-paths should be effective in the proposed model. On the other hand, the effective meta-paths mainly depend on the dataset instead of the architecture, so the meta-paths should be effective after being generalized to other HGNNs. Based on the results in Tables 1,2,3,5, using the search meta-paths, LMSPS outperforms the other baselines on almost all conditions, sometimes significantly, which can validate the high quality of the discovered meta-paths on the proposed model. Because finding meta-paths that work effectively across various HGNNs is a tough task, it has not been achieved by previous works. However, based on Table 4 (also shown below for quick check), After simply replacing the original meta-path set with our searched meta-paths and keeping other settings unchanged, the performance of HAN and SeHGNN both improve, demonstrating the effectiveness of our searched meta-paths. Thank you very much! | Method | DBLP | IMDB | ACM | Freebase | | ------------ | -------------- | -------------- | -------------- | -------------- | | HAN | 92.05 | 64.63 | 90.79 | 54.77 | | HAN-LMSPS | 93.54 | 65.89 | 92.28 | 57.13 | | SeHGNN | 95.24 | 68.21 | 93.87 | 63.41 | | SeHGNN-LMSPS | 95.57 | 68.59 | 94.46 | 65.37 | --- Thank you once more for your efforts. Please kindly let us know if our response has addressed your concerns.

Reviewer msas2024-08-12

Thank you for your response. These have addressed the majority of my questions. I appreciate the effort and insights the authors put into the paper. I will maintain my original score.

Authorsrebuttal2024-08-12

Thank you for appreciating the effort and insights! We're glad to hear that you're satisfied.

Reviewer r1gQ2024-08-12

Response to the rebuttal

Dear authors, Thanks for your rebuttal. My further concerns are as follows: 1. I recognize the statement that a simple and straightforward design is better than a complex design. But, I want to emphasize the novelty is rather incremental although the experimental results seem to be promising. Differentiable search method is widely used in many applications inspired by NAS (Neural Architecture Search). Applying differentiable search method to the meta-path search is not a novel idea. Moreover, some similar ideas for selecting meta-paths and reducing expert experiences have also been proposed. In other words, searching for meta-paths for heterogeneous graphs is not a new topic. Applying a commonly used search method for a not new topic is not very exciting. Although the authors states that the progressive sampling algorithm and sampling evaluation strategy are novel. But, from my view, the two tricks are too engineering without any theoretical analysis. And, the main body of this paper is still the differentiable search method. **Overall, the novelty of the paper is not yet up to level of NeurIPS**. 2. The paper focus on the meta-path search on large-scale graphs. However, only one large-scale graph is used. Moreover, it is suggested that the authors can choose some large graphs from other fields not limited to academic graphs. **Many large graphs in OGB are heterogeneous and can be used for evaluation**. 3. The concerns that many searched meta-paths seem strange and unreasonable still remains. Although the authors select some searched meta-paths and make explanations. But, most searched meta-paths lack interpretability. Interpreting the searched meta-paths one by one is infeasible. If the authors can find some common characteristics from the searched meta-path, this will have greater significance for guiding the design of the meta-path. Overall, due to the limited novelty, the lack of more large-scale graph datasets from different fields, and the lack of the interpretability and the insight about the searched meta-paths, I maintain my ratings unchanged.

Authorsrebuttal2024-08-13

Theoretical analysis about the reasonableness of sampling search

**Zero-order condition**: Consider two high-dimensional random variables $\mathbf{y} = f(\mathbf{x}) \in \mathbb{R}^{m \times d_1}$ and $\mathbf{z} = g(\mathbf{x}) \in \mathbb{R}^{m \times d_1}$. We say that $\mathbf{y}$ and $\mathbf{z}$ satisfy the zero-order condition if, for any valid sample $\mathbf{x} \in \mathbb{R}^{n \times d}$, the inequality $|\mathbf{y} - \mathbf{z}|_2 \leq \epsilon$ holds, where $\epsilon$ is a very small positive number. **Lemma 1**: Let $M$ represent the maximum number of activable paths, with each pair of operations satisfying the zero-order condition. Using $M$ distinct expectations and variances, it is possible to approximate all combinations (i.e., $2^M$). Lemma 1 guarantees that we can track the combination containing $i$ meta-paths with at least $M$ iterations. **Given that the number of iterations significantly exceeds $M$, the relative importance of the meta-paths can be learned during the search stage.** Below is the proof of Lemma 1: Let ${\mathbf{y}}_{p_y(y)} = f(\mathbf{x})$, ${\mathbf{z}}_{p_z(z)} = g(\mathbf{x})$, and ${\mathbf{x}} \sim p_{x(x)}$. For the case $M=1$, the expectations of $\mathbf{y}$ and $\mathbf{z}$ can be expressed as follows: $$ \begin{aligned} {\\mathbb E}[{\\mathbf y}]&={\\mathbb E}[f\left({\\mathbf x}\right)]=\int p_{{\\mathbf x}}({\\mathbf x}) f({\\mathbf x}) {\mathrm d}{\\mathbf x} \end{aligned} $$ $$ \begin{aligned} {\\mathbb E}[{\\mathbf z}]&={\\mathbb E}[g\left({\\mathbf x}\right)]=\int p_{{\\mathbf x}}({\\mathbf x}) g({\\mathbf x}) {\mathrm d}{\\mathbf x} \end{aligned} $$ According to the zero-order condition, $f(\mathbf{x}) \approx g(\mathbf{x})$. Since $p(\mathbf{x})$ is the same for both $\mathbf{y}$ and $\mathbf{z}$, it follows that $\mathbb{E}[\mathbf{y}] \approx \mathbb{E}[\mathbf{z}]$. Next, we prove that $Var[\mathbf{y}] \approx Var[\mathbf{z}]$. Note that $Var[\mathbf{y}] = \mathbb{E}\left[\mathbf{y}^{2}\right] - \left(\mathbb{E}[\mathbf{y}]\right)^{2}$ and $Var[\mathbf{z}] = \mathbb{E}\left[\mathbf{z}^{2}\right] - \left(\mathbb{E}[\mathbf{z}]\right)^{2}$. Thus, it suffices to prove that $\mathbb{E}\left[\mathbf{y}^{2}\right] \approx \mathbb{E}\left[\mathbf{z}^{2}\right]$. This can be similarly demonstrated as follows: $$ \begin{aligned} {\\mathbb E}\left[{\\mathbf y}^{2}\right]&=\int p_{{\\mathbf y}}({\\mathbf y}) {\\mathbf y}^{2} {\mathrm d} {\\mathbf y} = \int p_{{\\mathbf x}}({\\mathbf x}) f^{2}({\\mathbf x}) {\mathrm d} {\\mathbf x} \end{aligned} $$ $$ \begin{aligned} {\\mathbb E}\left[{\\mathbf z}^{2}\right]&=\int p_{{\\mathbf z}}({\\mathbf z}) {\\mathbf z}^{2} {\mathrm d} {\\mathbf z} = \int p_{{\\mathbf x}}({\\mathbf x}) g^{2}({\\mathbf x}) {\mathrm d} {\\mathbf x} \end{aligned} $$ According to the zero-order condition, we have $Var[\mathbf{y}] \approx Var[\mathbf{z}]$. For the case of $M=2$, when both paths are selected, the output becomes $\mathbf{y} + \mathbf{z}$, and its expectation can be written as: $$ \begin{aligned} {\\mathbb E}[{\\mathbf y} + {\\mathbf z}] &= {\\mathbb E}[{\\mathbf y}] + {\\mathbb E}[{\\mathbf z}] \approx 2{\\mathbb E}[{\\mathbf y}] \end{aligned} $$ The variance of $\mathbf{y} + \mathbf{z}$ is: $$ \begin{aligned} Var[{\\mathbf y} + {\\mathbf z}] \approx Var [2{\\mathbf y}] = 4 Var[\\mathbf y] \end{aligned} $$ Thus, there are two types of expectations and variances: $\mathbb{E}[\mathbf{y}]$ and $Var[\mathbf{y}]$ for ${\mathbf{y}, \mathbf{z}}$, and $2\mathbb{E}[\mathbf{y}]$ and $4Var[\mathbf{y}]$ for ${\mathbf{y} + \mathbf{z}}$. Similarly, for the case where $M \in [1, K]$, there will be $M$ types of expectations and variances.

Program Chairsdecision2024-09-25

Decision

Accept (poster)

© 2026 NYSGPT2525 LLC