Daily Arxiv

This is a page that curates AI-related papers published worldwide.
All content here is summarized using Google Gemini and operated on a non-profit basis.
Copyright for each paper belongs to the authors and their institutions; please make sure to credit the source when sharing.

Efficient Network Automatic Relevance Determination

Created by
  • Haebom

Author

Hongwei Zhang, Ziqi Ye, Xinyuan Wang, Xin Guo, Zenglin Xu, Yuan Cheng, Zixin Hu, Yuan Qi

Outline

This paper proposes Network Automatic Relevance Determination (NARD), an extension of Automatic Relevance Determination (ARD) for linear probabilistic models. NARD models the sparse relationship between inputs X and outputs Y while simultaneously capturing the correlation structure between Y. It increases the sparsity of the model by identifying and removing irrelevant features using a matrix normal prior distribution containing sparsity-inducing parameters. Algorithmically, iteratively updates the precision matrix and the relationship between Y and refined inputs. To improve computational efficiency, we propose Sequential NARD, which sequentially evaluates features, and the Surrogate Function Method, which leverages efficient approximations of marginal likelihoods and simplifies the computation of the determinant and inverse of intermediate matrices. Combining the Sequential Update and Surrogate Function methods further reduces computational costs. The computational complexity per iteration of the three methods is reduced to O(m³+p³), O(m³+d²), and O(m³+p²), respectively, where p is the number of features ultimately used in the model and p << d. We demonstrate significant improvements in computational efficiency and comparable performance on synthetic and real-world datasets.

Takeaways, Limitations

Takeaways:
We present a NARD model that extends the existing ARD and considers correlations between multivariate outputs.
Eliminate unnecessary features and simplify the model by inducing sparsity.
Significantly reduce computational complexity through Sequential NARD and Surrogate Function Method.
Validated efficiency and performance improvements on synthetic and real-world datasets.
Limitations:
Applicable only to linear probability models. Does not consider nonlinear relationships.
The assumption that p << d may not always hold. When the number of features is very large, the efficiency gains may be limited.
Possibility of approximation error due to use of Surrogate Function Method.
Performance may vary depending on the size and type of the actual dataset.
👍